@gooddata/api-client-tiger 10.33.0-alpha.8 → 10.33.0-alpha.81
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 +12630 -9311
- package/esm/client.d.ts +3 -3
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +2 -2
- package/esm/client.js.map +1 -1
- package/esm/export.d.ts +2 -4
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +2 -3
- package/esm/export.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +376 -13
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +305 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
- package/esm/generated/automation-json-api/api.d.ts +473 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +74 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +391 -2
- package/esm/generated/export-json-api/api.d.ts +1129 -1074
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +363 -342
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +50 -1
- package/esm/generated/metadata-json-api/api.d.ts +1874 -1222
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +307 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8012 -7558
- package/esm/index.d.ts +5 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -404,6 +404,7 @@ export declare const ApiEntitlementNameEnum: {
|
|
|
404
404
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
405
405
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
406
406
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
407
|
+
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
407
408
|
};
|
|
408
409
|
export type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
|
|
409
410
|
/**
|
|
@@ -517,12 +518,62 @@ export declare const AssigneeRuleTypeEnum: {
|
|
|
517
518
|
readonly ALL_WORKSPACE_USERS: "allWorkspaceUsers";
|
|
518
519
|
};
|
|
519
520
|
export type AssigneeRuleTypeEnum = typeof AssigneeRuleTypeEnum[keyof typeof AssigneeRuleTypeEnum];
|
|
521
|
+
/**
|
|
522
|
+
* @type AttributeElements
|
|
523
|
+
* @export
|
|
524
|
+
*/
|
|
525
|
+
export type AttributeElements = AttributeElementsByRef | AttributeElementsByValue;
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @export
|
|
529
|
+
* @interface AttributeElementsByRef
|
|
530
|
+
*/
|
|
531
|
+
export interface AttributeElementsByRef {
|
|
532
|
+
/**
|
|
533
|
+
* List of attribute elements by reference
|
|
534
|
+
* @type {Array<string>}
|
|
535
|
+
* @memberof AttributeElementsByRef
|
|
536
|
+
*/
|
|
537
|
+
uris: Array<string>;
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @export
|
|
542
|
+
* @interface AttributeElementsByValue
|
|
543
|
+
*/
|
|
544
|
+
export interface AttributeElementsByValue {
|
|
545
|
+
/**
|
|
546
|
+
* List of attribute elements by value
|
|
547
|
+
* @type {Array<string>}
|
|
548
|
+
* @memberof AttributeElementsByValue
|
|
549
|
+
*/
|
|
550
|
+
values: Array<string | null>;
|
|
551
|
+
}
|
|
520
552
|
/**
|
|
521
553
|
* @type AttributeFilter
|
|
522
554
|
* Abstract filter definition type attributes
|
|
523
555
|
* @export
|
|
524
556
|
*/
|
|
525
557
|
export type AttributeFilter = NegativeAttributeFilter | PositiveAttributeFilter;
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @export
|
|
561
|
+
* @interface AttributeFilterByDate
|
|
562
|
+
*/
|
|
563
|
+
export interface AttributeFilterByDate {
|
|
564
|
+
/**
|
|
565
|
+
*
|
|
566
|
+
* @type {string}
|
|
567
|
+
* @memberof AttributeFilterByDate
|
|
568
|
+
*/
|
|
569
|
+
filterLocalIdentifier: string;
|
|
570
|
+
/**
|
|
571
|
+
*
|
|
572
|
+
* @type {boolean}
|
|
573
|
+
* @memberof AttributeFilterByDate
|
|
574
|
+
*/
|
|
575
|
+
isCommonDate: boolean;
|
|
576
|
+
}
|
|
526
577
|
/**
|
|
527
578
|
* Filter on specific set of label values.
|
|
528
579
|
* @export
|
|
@@ -536,6 +587,25 @@ export interface AttributeFilterElements {
|
|
|
536
587
|
*/
|
|
537
588
|
values: Array<string | null>;
|
|
538
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @export
|
|
593
|
+
* @interface AttributeFilterParent
|
|
594
|
+
*/
|
|
595
|
+
export interface AttributeFilterParent {
|
|
596
|
+
/**
|
|
597
|
+
*
|
|
598
|
+
* @type {string}
|
|
599
|
+
* @memberof AttributeFilterParent
|
|
600
|
+
*/
|
|
601
|
+
filterLocalIdentifier: string;
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @type {Over}
|
|
605
|
+
* @memberof AttributeFilterParent
|
|
606
|
+
*/
|
|
607
|
+
over: Over;
|
|
608
|
+
}
|
|
539
609
|
/**
|
|
540
610
|
*
|
|
541
611
|
* @export
|
|
@@ -591,6 +661,19 @@ export declare const AutomationAlertTriggerEnum: {
|
|
|
591
661
|
readonly ONCE: "ONCE";
|
|
592
662
|
};
|
|
593
663
|
export type AutomationAlertTriggerEnum = typeof AutomationAlertTriggerEnum[keyof typeof AutomationAlertTriggerEnum];
|
|
664
|
+
/**
|
|
665
|
+
*
|
|
666
|
+
* @export
|
|
667
|
+
* @interface AutomationDashboardTabularExport
|
|
668
|
+
*/
|
|
669
|
+
export interface AutomationDashboardTabularExport {
|
|
670
|
+
/**
|
|
671
|
+
*
|
|
672
|
+
* @type {DashboardTabularExportRequestV2}
|
|
673
|
+
* @memberof AutomationDashboardTabularExport
|
|
674
|
+
*/
|
|
675
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
676
|
+
}
|
|
594
677
|
/**
|
|
595
678
|
*
|
|
596
679
|
* @export
|
|
@@ -738,6 +821,55 @@ export interface AvailableAssignees {
|
|
|
738
821
|
*/
|
|
739
822
|
userGroups: Array<UserGroupAssignee>;
|
|
740
823
|
}
|
|
824
|
+
/**
|
|
825
|
+
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
826
|
+
* @export
|
|
827
|
+
* @interface BoundedFilter
|
|
828
|
+
*/
|
|
829
|
+
export interface BoundedFilter {
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @type {AfmObjectIdentifierDataset}
|
|
833
|
+
* @memberof BoundedFilter
|
|
834
|
+
*/
|
|
835
|
+
dataset: AfmObjectIdentifierDataset;
|
|
836
|
+
/**
|
|
837
|
+
* Date granularity specifying particular date attribute in given dimension.
|
|
838
|
+
* @type {string}
|
|
839
|
+
* @memberof BoundedFilter
|
|
840
|
+
*/
|
|
841
|
+
granularity: BoundedFilterGranularityEnum;
|
|
842
|
+
/**
|
|
843
|
+
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
844
|
+
* @type {number}
|
|
845
|
+
* @memberof BoundedFilter
|
|
846
|
+
*/
|
|
847
|
+
from?: number | null;
|
|
848
|
+
/**
|
|
849
|
+
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
850
|
+
* @type {number}
|
|
851
|
+
* @memberof BoundedFilter
|
|
852
|
+
*/
|
|
853
|
+
to?: number | null;
|
|
854
|
+
}
|
|
855
|
+
export declare const BoundedFilterGranularityEnum: {
|
|
856
|
+
readonly MINUTE: "MINUTE";
|
|
857
|
+
readonly HOUR: "HOUR";
|
|
858
|
+
readonly DAY: "DAY";
|
|
859
|
+
readonly WEEK: "WEEK";
|
|
860
|
+
readonly MONTH: "MONTH";
|
|
861
|
+
readonly QUARTER: "QUARTER";
|
|
862
|
+
readonly YEAR: "YEAR";
|
|
863
|
+
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
864
|
+
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
865
|
+
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
866
|
+
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
867
|
+
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
868
|
+
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
869
|
+
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
870
|
+
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
871
|
+
};
|
|
872
|
+
export type BoundedFilterGranularityEnum = typeof BoundedFilterGranularityEnum[keyof typeof BoundedFilterGranularityEnum];
|
|
741
873
|
/**
|
|
742
874
|
* Table column override.
|
|
743
875
|
* @export
|
|
@@ -1012,6 +1144,202 @@ export interface CustomOverride {
|
|
|
1012
1144
|
[key: string]: CustomMetric;
|
|
1013
1145
|
};
|
|
1014
1146
|
}
|
|
1147
|
+
/**
|
|
1148
|
+
*
|
|
1149
|
+
* @export
|
|
1150
|
+
* @interface DashboardAttributeFilter
|
|
1151
|
+
*/
|
|
1152
|
+
export interface DashboardAttributeFilter {
|
|
1153
|
+
/**
|
|
1154
|
+
*
|
|
1155
|
+
* @type {DashboardAttributeFilterAttributeFilter}
|
|
1156
|
+
* @memberof DashboardAttributeFilter
|
|
1157
|
+
*/
|
|
1158
|
+
attributeFilter: DashboardAttributeFilterAttributeFilter;
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @export
|
|
1163
|
+
* @interface DashboardAttributeFilterAttributeFilter
|
|
1164
|
+
*/
|
|
1165
|
+
export interface DashboardAttributeFilterAttributeFilter {
|
|
1166
|
+
/**
|
|
1167
|
+
*
|
|
1168
|
+
* @type {IdentifierRef}
|
|
1169
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1170
|
+
*/
|
|
1171
|
+
displayForm: IdentifierRef;
|
|
1172
|
+
/**
|
|
1173
|
+
*
|
|
1174
|
+
* @type {boolean}
|
|
1175
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1176
|
+
*/
|
|
1177
|
+
negativeSelection: boolean;
|
|
1178
|
+
/**
|
|
1179
|
+
*
|
|
1180
|
+
* @type {AttributeElements}
|
|
1181
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1182
|
+
*/
|
|
1183
|
+
attributeElements: AttributeElements;
|
|
1184
|
+
/**
|
|
1185
|
+
*
|
|
1186
|
+
* @type {Array<AttributeFilterParent>}
|
|
1187
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1188
|
+
*/
|
|
1189
|
+
filterElementsBy?: Array<AttributeFilterParent>;
|
|
1190
|
+
/**
|
|
1191
|
+
*
|
|
1192
|
+
* @type {Array<AttributeFilterByDate>}
|
|
1193
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1194
|
+
*/
|
|
1195
|
+
filterElementsByDate?: Array<AttributeFilterByDate>;
|
|
1196
|
+
/**
|
|
1197
|
+
*
|
|
1198
|
+
* @type {Array<IdentifierRef>}
|
|
1199
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1200
|
+
*/
|
|
1201
|
+
validateElementsBy?: Array<IdentifierRef>;
|
|
1202
|
+
/**
|
|
1203
|
+
*
|
|
1204
|
+
* @type {string}
|
|
1205
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1206
|
+
*/
|
|
1207
|
+
title?: string;
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @type {string}
|
|
1211
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1212
|
+
*/
|
|
1213
|
+
selectionMode?: DashboardAttributeFilterAttributeFilterSelectionModeEnum;
|
|
1214
|
+
/**
|
|
1215
|
+
*
|
|
1216
|
+
* @type {string}
|
|
1217
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1218
|
+
*/
|
|
1219
|
+
localIdentifier?: string;
|
|
1220
|
+
}
|
|
1221
|
+
export declare const DashboardAttributeFilterAttributeFilterSelectionModeEnum: {
|
|
1222
|
+
readonly SINGLE: "single";
|
|
1223
|
+
readonly MULTI: "multi";
|
|
1224
|
+
};
|
|
1225
|
+
export type DashboardAttributeFilterAttributeFilterSelectionModeEnum = typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum[keyof typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum];
|
|
1226
|
+
/**
|
|
1227
|
+
*
|
|
1228
|
+
* @export
|
|
1229
|
+
* @interface DashboardDateFilter
|
|
1230
|
+
*/
|
|
1231
|
+
export interface DashboardDateFilter {
|
|
1232
|
+
/**
|
|
1233
|
+
*
|
|
1234
|
+
* @type {DashboardDateFilterDateFilter}
|
|
1235
|
+
* @memberof DashboardDateFilter
|
|
1236
|
+
*/
|
|
1237
|
+
dateFilter: DashboardDateFilterDateFilter;
|
|
1238
|
+
}
|
|
1239
|
+
/**
|
|
1240
|
+
*
|
|
1241
|
+
* @export
|
|
1242
|
+
* @interface DashboardDateFilterDateFilter
|
|
1243
|
+
*/
|
|
1244
|
+
export interface DashboardDateFilterDateFilter {
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @type {string}
|
|
1248
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1249
|
+
*/
|
|
1250
|
+
type: DashboardDateFilterDateFilterTypeEnum;
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {string}
|
|
1254
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1255
|
+
*/
|
|
1256
|
+
granularity: DashboardDateFilterDateFilterGranularityEnum;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {string | number}
|
|
1260
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1261
|
+
*/
|
|
1262
|
+
from?: string | number;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {string | number}
|
|
1266
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1267
|
+
*/
|
|
1268
|
+
to?: string | number;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {IdentifierRef}
|
|
1272
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1273
|
+
*/
|
|
1274
|
+
dataSet?: IdentifierRef;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @type {IdentifierRef}
|
|
1278
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1279
|
+
*/
|
|
1280
|
+
attribute?: IdentifierRef;
|
|
1281
|
+
/**
|
|
1282
|
+
*
|
|
1283
|
+
* @type {string}
|
|
1284
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1285
|
+
*/
|
|
1286
|
+
localIdentifier?: string;
|
|
1287
|
+
}
|
|
1288
|
+
export declare const DashboardDateFilterDateFilterTypeEnum: {
|
|
1289
|
+
readonly RELATIVE: "relative";
|
|
1290
|
+
readonly ABSOLUTE: "absolute";
|
|
1291
|
+
};
|
|
1292
|
+
export type DashboardDateFilterDateFilterTypeEnum = typeof DashboardDateFilterDateFilterTypeEnum[keyof typeof DashboardDateFilterDateFilterTypeEnum];
|
|
1293
|
+
export declare const DashboardDateFilterDateFilterGranularityEnum: {
|
|
1294
|
+
readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
|
|
1295
|
+
readonly GDC_TIME_YEAR: "GDC.time.year";
|
|
1296
|
+
readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
|
|
1297
|
+
readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
|
|
1298
|
+
readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
|
|
1299
|
+
readonly GDC_TIME_WEEK: "GDC.time.week";
|
|
1300
|
+
readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
|
|
1301
|
+
readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
|
|
1302
|
+
readonly GDC_TIME_QUARTER: "GDC.time.quarter";
|
|
1303
|
+
readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
|
|
1304
|
+
readonly GDC_TIME_MONTH: "GDC.time.month";
|
|
1305
|
+
readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
|
|
1306
|
+
readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
|
|
1307
|
+
readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
|
|
1308
|
+
readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
|
|
1309
|
+
readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
|
|
1310
|
+
readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
|
|
1311
|
+
readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
|
|
1312
|
+
readonly GDC_TIME_DATE: "GDC.time.date";
|
|
1313
|
+
readonly GDC_TIME_HOUR: "GDC.time.hour";
|
|
1314
|
+
readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
|
|
1315
|
+
readonly GDC_TIME_MINUTE: "GDC.time.minute";
|
|
1316
|
+
readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
|
|
1317
|
+
};
|
|
1318
|
+
export type DashboardDateFilterDateFilterGranularityEnum = typeof DashboardDateFilterDateFilterGranularityEnum[keyof typeof DashboardDateFilterDateFilterGranularityEnum];
|
|
1319
|
+
/**
|
|
1320
|
+
* Additional settings.
|
|
1321
|
+
* @export
|
|
1322
|
+
* @interface DashboardExportSettings
|
|
1323
|
+
*/
|
|
1324
|
+
export interface DashboardExportSettings {
|
|
1325
|
+
/**
|
|
1326
|
+
* If true, the export will contain the information about the exported date and dashboard filters.
|
|
1327
|
+
* @type {boolean}
|
|
1328
|
+
* @memberof DashboardExportSettings
|
|
1329
|
+
*/
|
|
1330
|
+
exportInfo?: boolean;
|
|
1331
|
+
/**
|
|
1332
|
+
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
1333
|
+
* @type {boolean}
|
|
1334
|
+
* @memberof DashboardExportSettings
|
|
1335
|
+
*/
|
|
1336
|
+
mergeHeaders?: boolean;
|
|
1337
|
+
}
|
|
1338
|
+
/**
|
|
1339
|
+
* @type DashboardFilter
|
|
1340
|
+
* @export
|
|
1341
|
+
*/
|
|
1342
|
+
export type DashboardFilter = DashboardAttributeFilter | DashboardDateFilter;
|
|
1015
1343
|
/**
|
|
1016
1344
|
*
|
|
1017
1345
|
* @export
|
|
@@ -1098,6 +1426,53 @@ export declare const DashboardSlidesTemplateAppliedOnEnum: {
|
|
|
1098
1426
|
readonly PPTX: "PPTX";
|
|
1099
1427
|
};
|
|
1100
1428
|
export type DashboardSlidesTemplateAppliedOnEnum = typeof DashboardSlidesTemplateAppliedOnEnum[keyof typeof DashboardSlidesTemplateAppliedOnEnum];
|
|
1429
|
+
/**
|
|
1430
|
+
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
1431
|
+
* @export
|
|
1432
|
+
* @interface DashboardTabularExportRequestV2
|
|
1433
|
+
*/
|
|
1434
|
+
export interface DashboardTabularExportRequestV2 {
|
|
1435
|
+
/**
|
|
1436
|
+
* Requested tabular export type.
|
|
1437
|
+
* @type {string}
|
|
1438
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1439
|
+
*/
|
|
1440
|
+
format: DashboardTabularExportRequestV2FormatEnum;
|
|
1441
|
+
/**
|
|
1442
|
+
* Filename of downloaded file without extension.
|
|
1443
|
+
* @type {string}
|
|
1444
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1445
|
+
*/
|
|
1446
|
+
fileName: string;
|
|
1447
|
+
/**
|
|
1448
|
+
* List of filters that will be used instead of the default dashboard filters.
|
|
1449
|
+
* @type {Array<DashboardFilter>}
|
|
1450
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1451
|
+
*/
|
|
1452
|
+
dashboardFiltersOverride?: Array<DashboardFilter>;
|
|
1453
|
+
/**
|
|
1454
|
+
* Dashboard identifier
|
|
1455
|
+
* @type {string}
|
|
1456
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1457
|
+
*/
|
|
1458
|
+
dashboardId: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
1461
|
+
* @type {Array<string>}
|
|
1462
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1463
|
+
*/
|
|
1464
|
+
widgetIds?: Array<string>;
|
|
1465
|
+
/**
|
|
1466
|
+
*
|
|
1467
|
+
* @type {DashboardExportSettings}
|
|
1468
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1469
|
+
*/
|
|
1470
|
+
settings?: DashboardExportSettings;
|
|
1471
|
+
}
|
|
1472
|
+
export declare const DashboardTabularExportRequestV2FormatEnum: {
|
|
1473
|
+
readonly XLSX: "XLSX";
|
|
1474
|
+
};
|
|
1475
|
+
export type DashboardTabularExportRequestV2FormatEnum = typeof DashboardTabularExportRequestV2FormatEnum[keyof typeof DashboardTabularExportRequestV2FormatEnum];
|
|
1101
1476
|
/**
|
|
1102
1477
|
* Data source permission assignments
|
|
1103
1478
|
* @export
|
|
@@ -1233,6 +1608,19 @@ export type DatasetWorkspaceDataFilterIdentifierTypeEnum = typeof DatasetWorkspa
|
|
|
1233
1608
|
* @export
|
|
1234
1609
|
*/
|
|
1235
1610
|
export type DateFilter = AbsoluteDateFilter | RelativeDateFilter;
|
|
1611
|
+
/**
|
|
1612
|
+
*
|
|
1613
|
+
* @export
|
|
1614
|
+
* @interface DateValue
|
|
1615
|
+
*/
|
|
1616
|
+
export interface DateValue {
|
|
1617
|
+
/**
|
|
1618
|
+
*
|
|
1619
|
+
* @type {string}
|
|
1620
|
+
* @memberof DateValue
|
|
1621
|
+
*/
|
|
1622
|
+
value: string;
|
|
1623
|
+
}
|
|
1236
1624
|
/**
|
|
1237
1625
|
*
|
|
1238
1626
|
* @export
|
|
@@ -1740,6 +2128,12 @@ export interface DeclarativeAutomation {
|
|
|
1740
2128
|
* @memberof DeclarativeAutomation
|
|
1741
2129
|
*/
|
|
1742
2130
|
slidesExports?: Array<AutomationSlidesExport>;
|
|
2131
|
+
/**
|
|
2132
|
+
*
|
|
2133
|
+
* @type {Array<AutomationDashboardTabularExport>}
|
|
2134
|
+
* @memberof DeclarativeAutomation
|
|
2135
|
+
*/
|
|
2136
|
+
dashboardTabularExports?: Array<AutomationDashboardTabularExport>;
|
|
1743
2137
|
/**
|
|
1744
2138
|
* External recipients of the automation action results.
|
|
1745
2139
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -4521,6 +4915,7 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
|
4521
4915
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
4522
4916
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
4523
4917
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
4918
|
+
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
4524
4919
|
};
|
|
4525
4920
|
export type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
|
|
4526
4921
|
/**
|
|
@@ -4865,6 +5260,60 @@ export declare const IdentifierDuplicationsTypeEnum: {
|
|
|
4865
5260
|
readonly WORKSPACE_DATA_FILTER_SETTINGS: "workspaceDataFilterSettings";
|
|
4866
5261
|
};
|
|
4867
5262
|
export type IdentifierDuplicationsTypeEnum = typeof IdentifierDuplicationsTypeEnum[keyof typeof IdentifierDuplicationsTypeEnum];
|
|
5263
|
+
/**
|
|
5264
|
+
*
|
|
5265
|
+
* @export
|
|
5266
|
+
* @interface IdentifierRef
|
|
5267
|
+
*/
|
|
5268
|
+
export interface IdentifierRef {
|
|
5269
|
+
/**
|
|
5270
|
+
*
|
|
5271
|
+
* @type {IdentifierRefIdentifier}
|
|
5272
|
+
* @memberof IdentifierRef
|
|
5273
|
+
*/
|
|
5274
|
+
identifier?: IdentifierRefIdentifier;
|
|
5275
|
+
}
|
|
5276
|
+
/**
|
|
5277
|
+
*
|
|
5278
|
+
* @export
|
|
5279
|
+
* @interface IdentifierRefIdentifier
|
|
5280
|
+
*/
|
|
5281
|
+
export interface IdentifierRefIdentifier {
|
|
5282
|
+
/**
|
|
5283
|
+
*
|
|
5284
|
+
* @type {string}
|
|
5285
|
+
* @memberof IdentifierRefIdentifier
|
|
5286
|
+
*/
|
|
5287
|
+
id: string;
|
|
5288
|
+
/**
|
|
5289
|
+
*
|
|
5290
|
+
* @type {string}
|
|
5291
|
+
* @memberof IdentifierRefIdentifier
|
|
5292
|
+
*/
|
|
5293
|
+
type: IdentifierRefIdentifierTypeEnum;
|
|
5294
|
+
}
|
|
5295
|
+
export declare const IdentifierRefIdentifierTypeEnum: {
|
|
5296
|
+
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5297
|
+
readonly ATTRIBUTE: "attribute";
|
|
5298
|
+
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
5299
|
+
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
5300
|
+
readonly DATASET: "dataset";
|
|
5301
|
+
readonly FACT: "fact";
|
|
5302
|
+
readonly LABEL: "label";
|
|
5303
|
+
readonly METRIC: "metric";
|
|
5304
|
+
readonly USER_DATA_FILTER: "userDataFilter";
|
|
5305
|
+
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5306
|
+
readonly AUTOMATION: "automation";
|
|
5307
|
+
readonly PROMPT: "prompt";
|
|
5308
|
+
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
5309
|
+
readonly FILTER_CONTEXT: "filterContext";
|
|
5310
|
+
readonly WORKSPACE_SETTINGS: "workspaceSettings";
|
|
5311
|
+
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
5312
|
+
readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
|
|
5313
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
5314
|
+
readonly FILTER_VIEW: "filterView";
|
|
5315
|
+
};
|
|
5316
|
+
export type IdentifierRefIdentifierTypeEnum = typeof IdentifierRefIdentifierTypeEnum[keyof typeof IdentifierRefIdentifierTypeEnum];
|
|
4868
5317
|
/**
|
|
4869
5318
|
* Export request object describing the export properties and metadata for image exports.
|
|
4870
5319
|
* @export
|
|
@@ -5061,15 +5510,52 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
5061
5510
|
id: string;
|
|
5062
5511
|
/**
|
|
5063
5512
|
*
|
|
5064
|
-
* @type {
|
|
5513
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5065
5514
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
5066
5515
|
*/
|
|
5067
|
-
attributes:
|
|
5516
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5068
5517
|
}
|
|
5069
5518
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
5070
5519
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5071
5520
|
};
|
|
5072
5521
|
export type JsonApiAnalyticalDashboardInTypeEnum = typeof JsonApiAnalyticalDashboardInTypeEnum[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
5522
|
+
/**
|
|
5523
|
+
*
|
|
5524
|
+
* @export
|
|
5525
|
+
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
5526
|
+
*/
|
|
5527
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
5528
|
+
/**
|
|
5529
|
+
*
|
|
5530
|
+
* @type {string}
|
|
5531
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5532
|
+
*/
|
|
5533
|
+
title?: string;
|
|
5534
|
+
/**
|
|
5535
|
+
*
|
|
5536
|
+
* @type {string}
|
|
5537
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5538
|
+
*/
|
|
5539
|
+
description?: string;
|
|
5540
|
+
/**
|
|
5541
|
+
*
|
|
5542
|
+
* @type {Array<string>}
|
|
5543
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5544
|
+
*/
|
|
5545
|
+
tags?: Array<string>;
|
|
5546
|
+
/**
|
|
5547
|
+
*
|
|
5548
|
+
* @type {boolean}
|
|
5549
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5550
|
+
*/
|
|
5551
|
+
areRelationsValid?: boolean;
|
|
5552
|
+
/**
|
|
5553
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5554
|
+
* @type {object}
|
|
5555
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
5556
|
+
*/
|
|
5557
|
+
content: object;
|
|
5558
|
+
}
|
|
5073
5559
|
/**
|
|
5074
5560
|
*
|
|
5075
5561
|
* @export
|
|
@@ -5197,10 +5683,10 @@ export interface JsonApiAnalyticalDashboardOutList {
|
|
|
5197
5683
|
links?: ListLinks;
|
|
5198
5684
|
/**
|
|
5199
5685
|
*
|
|
5200
|
-
* @type {
|
|
5686
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
5201
5687
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
5202
5688
|
*/
|
|
5203
|
-
meta?:
|
|
5689
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5204
5690
|
/**
|
|
5205
5691
|
* Included resources
|
|
5206
5692
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -5511,10 +5997,10 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
5511
5997
|
id?: string;
|
|
5512
5998
|
/**
|
|
5513
5999
|
*
|
|
5514
|
-
* @type {
|
|
6000
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5515
6001
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
5516
6002
|
*/
|
|
5517
|
-
attributes:
|
|
6003
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5518
6004
|
}
|
|
5519
6005
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
5520
6006
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -5656,23 +6142,10 @@ export interface JsonApiApiTokenOutList {
|
|
|
5656
6142
|
links?: ListLinks;
|
|
5657
6143
|
/**
|
|
5658
6144
|
*
|
|
5659
|
-
* @type {
|
|
6145
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
5660
6146
|
* @memberof JsonApiApiTokenOutList
|
|
5661
6147
|
*/
|
|
5662
|
-
meta?:
|
|
5663
|
-
}
|
|
5664
|
-
/**
|
|
5665
|
-
*
|
|
5666
|
-
* @export
|
|
5667
|
-
* @interface JsonApiApiTokenOutListMeta
|
|
5668
|
-
*/
|
|
5669
|
-
export interface JsonApiApiTokenOutListMeta {
|
|
5670
|
-
/**
|
|
5671
|
-
*
|
|
5672
|
-
* @type {PageMetadata}
|
|
5673
|
-
* @memberof JsonApiApiTokenOutListMeta
|
|
5674
|
-
*/
|
|
5675
|
-
page?: PageMetadata;
|
|
6148
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5676
6149
|
}
|
|
5677
6150
|
/**
|
|
5678
6151
|
*
|
|
@@ -5729,15 +6202,52 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
5729
6202
|
id: string;
|
|
5730
6203
|
/**
|
|
5731
6204
|
*
|
|
5732
|
-
* @type {
|
|
6205
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
5733
6206
|
* @memberof JsonApiAttributeHierarchyIn
|
|
5734
6207
|
*/
|
|
5735
|
-
attributes?:
|
|
6208
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
5736
6209
|
}
|
|
5737
6210
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
5738
6211
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
5739
6212
|
};
|
|
5740
6213
|
export type JsonApiAttributeHierarchyInTypeEnum = typeof JsonApiAttributeHierarchyInTypeEnum[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
6214
|
+
/**
|
|
6215
|
+
*
|
|
6216
|
+
* @export
|
|
6217
|
+
* @interface JsonApiAttributeHierarchyInAttributes
|
|
6218
|
+
*/
|
|
6219
|
+
export interface JsonApiAttributeHierarchyInAttributes {
|
|
6220
|
+
/**
|
|
6221
|
+
*
|
|
6222
|
+
* @type {string}
|
|
6223
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6224
|
+
*/
|
|
6225
|
+
title?: string;
|
|
6226
|
+
/**
|
|
6227
|
+
*
|
|
6228
|
+
* @type {string}
|
|
6229
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6230
|
+
*/
|
|
6231
|
+
description?: string;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {Array<string>}
|
|
6235
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6236
|
+
*/
|
|
6237
|
+
tags?: Array<string>;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {boolean}
|
|
6241
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6242
|
+
*/
|
|
6243
|
+
areRelationsValid?: boolean;
|
|
6244
|
+
/**
|
|
6245
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
6246
|
+
* @type {object}
|
|
6247
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
6248
|
+
*/
|
|
6249
|
+
content?: object;
|
|
6250
|
+
}
|
|
5741
6251
|
/**
|
|
5742
6252
|
*
|
|
5743
6253
|
* @export
|
|
@@ -5914,10 +6424,10 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
5914
6424
|
links?: ListLinks;
|
|
5915
6425
|
/**
|
|
5916
6426
|
*
|
|
5917
|
-
* @type {
|
|
6427
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
5918
6428
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
5919
6429
|
*/
|
|
5920
|
-
meta?:
|
|
6430
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
5921
6431
|
/**
|
|
5922
6432
|
* Included resources
|
|
5923
6433
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -6017,52 +6527,15 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
6017
6527
|
id: string;
|
|
6018
6528
|
/**
|
|
6019
6529
|
*
|
|
6020
|
-
* @type {
|
|
6530
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
6021
6531
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
6022
6532
|
*/
|
|
6023
|
-
attributes?:
|
|
6533
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
6024
6534
|
}
|
|
6025
6535
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
6026
6536
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
6027
6537
|
};
|
|
6028
6538
|
export type JsonApiAttributeHierarchyPatchTypeEnum = typeof JsonApiAttributeHierarchyPatchTypeEnum[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
6029
|
-
/**
|
|
6030
|
-
*
|
|
6031
|
-
* @export
|
|
6032
|
-
* @interface JsonApiAttributeHierarchyPatchAttributes
|
|
6033
|
-
*/
|
|
6034
|
-
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
6035
|
-
/**
|
|
6036
|
-
*
|
|
6037
|
-
* @type {string}
|
|
6038
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6039
|
-
*/
|
|
6040
|
-
title?: string;
|
|
6041
|
-
/**
|
|
6042
|
-
*
|
|
6043
|
-
* @type {string}
|
|
6044
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6045
|
-
*/
|
|
6046
|
-
description?: string;
|
|
6047
|
-
/**
|
|
6048
|
-
*
|
|
6049
|
-
* @type {Array<string>}
|
|
6050
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6051
|
-
*/
|
|
6052
|
-
tags?: Array<string>;
|
|
6053
|
-
/**
|
|
6054
|
-
*
|
|
6055
|
-
* @type {boolean}
|
|
6056
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6057
|
-
*/
|
|
6058
|
-
areRelationsValid?: boolean;
|
|
6059
|
-
/**
|
|
6060
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
6061
|
-
* @type {object}
|
|
6062
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
6063
|
-
*/
|
|
6064
|
-
content?: object;
|
|
6065
|
-
}
|
|
6066
6539
|
/**
|
|
6067
6540
|
*
|
|
6068
6541
|
* @export
|
|
@@ -6284,10 +6757,10 @@ export interface JsonApiAttributeOutList {
|
|
|
6284
6757
|
links?: ListLinks;
|
|
6285
6758
|
/**
|
|
6286
6759
|
*
|
|
6287
|
-
* @type {
|
|
6760
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
6288
6761
|
* @memberof JsonApiAttributeOutList
|
|
6289
6762
|
*/
|
|
6290
|
-
meta?:
|
|
6763
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6291
6764
|
/**
|
|
6292
6765
|
* Included resources
|
|
6293
6766
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -6438,16 +6911,16 @@ export interface JsonApiAutomationIn {
|
|
|
6438
6911
|
id: string;
|
|
6439
6912
|
/**
|
|
6440
6913
|
*
|
|
6441
|
-
* @type {
|
|
6914
|
+
* @type {JsonApiAutomationInAttributes}
|
|
6442
6915
|
* @memberof JsonApiAutomationIn
|
|
6443
6916
|
*/
|
|
6444
|
-
attributes?:
|
|
6917
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
6445
6918
|
/**
|
|
6446
6919
|
*
|
|
6447
|
-
* @type {
|
|
6920
|
+
* @type {JsonApiAutomationInRelationships}
|
|
6448
6921
|
* @memberof JsonApiAutomationIn
|
|
6449
6922
|
*/
|
|
6450
|
-
relationships?:
|
|
6923
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
6451
6924
|
}
|
|
6452
6925
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
6453
6926
|
readonly AUTOMATION: "automation";
|
|
@@ -6456,722 +6929,760 @@ export type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[key
|
|
|
6456
6929
|
/**
|
|
6457
6930
|
*
|
|
6458
6931
|
* @export
|
|
6459
|
-
* @interface
|
|
6460
|
-
*/
|
|
6461
|
-
export interface JsonApiAutomationInDocument {
|
|
6462
|
-
/**
|
|
6463
|
-
*
|
|
6464
|
-
* @type {JsonApiAutomationIn}
|
|
6465
|
-
* @memberof JsonApiAutomationInDocument
|
|
6466
|
-
*/
|
|
6467
|
-
data: JsonApiAutomationIn;
|
|
6468
|
-
}
|
|
6469
|
-
/**
|
|
6470
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6471
|
-
* @export
|
|
6472
|
-
* @interface JsonApiAutomationLinkage
|
|
6473
|
-
*/
|
|
6474
|
-
export interface JsonApiAutomationLinkage {
|
|
6475
|
-
/**
|
|
6476
|
-
*
|
|
6477
|
-
* @type {string}
|
|
6478
|
-
* @memberof JsonApiAutomationLinkage
|
|
6479
|
-
*/
|
|
6480
|
-
id: string;
|
|
6481
|
-
/**
|
|
6482
|
-
*
|
|
6483
|
-
* @type {string}
|
|
6484
|
-
* @memberof JsonApiAutomationLinkage
|
|
6485
|
-
*/
|
|
6486
|
-
type: JsonApiAutomationLinkageTypeEnum;
|
|
6487
|
-
}
|
|
6488
|
-
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
6489
|
-
readonly AUTOMATION: "automation";
|
|
6490
|
-
};
|
|
6491
|
-
export type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
6492
|
-
/**
|
|
6493
|
-
* JSON:API representation of automation entity.
|
|
6494
|
-
* @export
|
|
6495
|
-
* @interface JsonApiAutomationOut
|
|
6496
|
-
*/
|
|
6497
|
-
export interface JsonApiAutomationOut {
|
|
6498
|
-
/**
|
|
6499
|
-
* Object type
|
|
6500
|
-
* @type {string}
|
|
6501
|
-
* @memberof JsonApiAutomationOut
|
|
6502
|
-
*/
|
|
6503
|
-
type: JsonApiAutomationOutTypeEnum;
|
|
6504
|
-
/**
|
|
6505
|
-
* API identifier of an object
|
|
6506
|
-
* @type {string}
|
|
6507
|
-
* @memberof JsonApiAutomationOut
|
|
6508
|
-
*/
|
|
6509
|
-
id: string;
|
|
6510
|
-
/**
|
|
6511
|
-
*
|
|
6512
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
6513
|
-
* @memberof JsonApiAutomationOut
|
|
6514
|
-
*/
|
|
6515
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6516
|
-
/**
|
|
6517
|
-
*
|
|
6518
|
-
* @type {JsonApiAutomationOutAttributes}
|
|
6519
|
-
* @memberof JsonApiAutomationOut
|
|
6520
|
-
*/
|
|
6521
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
6522
|
-
/**
|
|
6523
|
-
*
|
|
6524
|
-
* @type {JsonApiAutomationOutRelationships}
|
|
6525
|
-
* @memberof JsonApiAutomationOut
|
|
6526
|
-
*/
|
|
6527
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
6528
|
-
}
|
|
6529
|
-
export declare const JsonApiAutomationOutTypeEnum: {
|
|
6530
|
-
readonly AUTOMATION: "automation";
|
|
6531
|
-
};
|
|
6532
|
-
export type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
6533
|
-
/**
|
|
6534
|
-
*
|
|
6535
|
-
* @export
|
|
6536
|
-
* @interface JsonApiAutomationOutAttributes
|
|
6932
|
+
* @interface JsonApiAutomationInAttributes
|
|
6537
6933
|
*/
|
|
6538
|
-
export interface
|
|
6934
|
+
export interface JsonApiAutomationInAttributes {
|
|
6539
6935
|
/**
|
|
6540
6936
|
*
|
|
6541
6937
|
* @type {string}
|
|
6542
|
-
* @memberof
|
|
6938
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6543
6939
|
*/
|
|
6544
6940
|
title?: string;
|
|
6545
6941
|
/**
|
|
6546
6942
|
*
|
|
6547
6943
|
* @type {string}
|
|
6548
|
-
* @memberof
|
|
6944
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6549
6945
|
*/
|
|
6550
6946
|
description?: string;
|
|
6551
6947
|
/**
|
|
6552
6948
|
*
|
|
6553
6949
|
* @type {Array<string>}
|
|
6554
|
-
* @memberof
|
|
6950
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6555
6951
|
*/
|
|
6556
6952
|
tags?: Array<string>;
|
|
6557
6953
|
/**
|
|
6558
6954
|
*
|
|
6559
6955
|
* @type {boolean}
|
|
6560
|
-
* @memberof
|
|
6956
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6561
6957
|
*/
|
|
6562
6958
|
areRelationsValid?: boolean;
|
|
6563
6959
|
/**
|
|
6564
6960
|
* Additional details to be included in the automated message.
|
|
6565
6961
|
* @type {any}
|
|
6566
|
-
* @memberof
|
|
6962
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6567
6963
|
*/
|
|
6568
6964
|
details?: any;
|
|
6569
6965
|
/**
|
|
6570
6966
|
*
|
|
6571
|
-
* @type {
|
|
6572
|
-
* @memberof
|
|
6967
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
6968
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6573
6969
|
*/
|
|
6574
|
-
metadata?:
|
|
6970
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
6575
6971
|
/**
|
|
6576
6972
|
* Current state of the automation.
|
|
6577
6973
|
* @type {string}
|
|
6578
|
-
* @memberof
|
|
6974
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6579
6975
|
*/
|
|
6580
|
-
state?:
|
|
6976
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
6581
6977
|
/**
|
|
6582
6978
|
*
|
|
6583
|
-
* @type {
|
|
6584
|
-
* @memberof
|
|
6979
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
6980
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6585
6981
|
*/
|
|
6586
|
-
schedule?:
|
|
6982
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
6587
6983
|
/**
|
|
6588
6984
|
*
|
|
6589
|
-
* @type {
|
|
6590
|
-
* @memberof
|
|
6985
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
6986
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6591
6987
|
*/
|
|
6592
|
-
alert?:
|
|
6988
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
6593
6989
|
/**
|
|
6594
6990
|
*
|
|
6595
|
-
* @type {Array<
|
|
6596
|
-
* @memberof
|
|
6991
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
6992
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6597
6993
|
*/
|
|
6598
|
-
tabularExports?: Array<
|
|
6994
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
6599
6995
|
/**
|
|
6600
6996
|
*
|
|
6601
|
-
* @type {Array<
|
|
6602
|
-
* @memberof
|
|
6997
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
6998
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6603
6999
|
*/
|
|
6604
|
-
visualExports?: Array<
|
|
7000
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
6605
7001
|
/**
|
|
6606
7002
|
*
|
|
6607
|
-
* @type {Array<
|
|
6608
|
-
* @memberof
|
|
7003
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
7004
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6609
7005
|
*/
|
|
6610
|
-
imageExports?: Array<
|
|
7006
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
6611
7007
|
/**
|
|
6612
7008
|
*
|
|
6613
|
-
* @type {Array<
|
|
6614
|
-
* @memberof
|
|
7009
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
7010
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6615
7011
|
*/
|
|
6616
|
-
rawExports?: Array<
|
|
7012
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
6617
7013
|
/**
|
|
6618
7014
|
*
|
|
6619
|
-
* @type {Array<
|
|
6620
|
-
* @memberof
|
|
6621
|
-
*/
|
|
6622
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExports>;
|
|
6623
|
-
/**
|
|
6624
|
-
* External recipients of the automation action results.
|
|
6625
|
-
* @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
|
|
6626
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
7015
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
7016
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6627
7017
|
*/
|
|
6628
|
-
|
|
7018
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
6629
7019
|
/**
|
|
6630
7020
|
*
|
|
6631
|
-
* @type {
|
|
6632
|
-
* @memberof
|
|
7021
|
+
* @type {Array<JsonApiAutomationInAttributesDashboardTabularExports>}
|
|
7022
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6633
7023
|
*/
|
|
6634
|
-
|
|
7024
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExports>;
|
|
6635
7025
|
/**
|
|
6636
|
-
*
|
|
6637
|
-
* @type {
|
|
6638
|
-
* @memberof
|
|
7026
|
+
* External recipients of the automation action results.
|
|
7027
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
7028
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6639
7029
|
*/
|
|
6640
|
-
|
|
7030
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
6641
7031
|
}
|
|
6642
|
-
export declare const
|
|
7032
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
6643
7033
|
readonly ACTIVE: "ACTIVE";
|
|
6644
7034
|
readonly PAUSED: "PAUSED";
|
|
6645
7035
|
};
|
|
6646
|
-
export type
|
|
7036
|
+
export type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
6647
7037
|
/**
|
|
6648
7038
|
*
|
|
6649
7039
|
* @export
|
|
6650
|
-
* @interface
|
|
7040
|
+
* @interface JsonApiAutomationInAttributesAlert
|
|
6651
7041
|
*/
|
|
6652
|
-
export interface
|
|
7042
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
6653
7043
|
/**
|
|
6654
7044
|
*
|
|
6655
7045
|
* @type {AlertAfm}
|
|
6656
|
-
* @memberof
|
|
7046
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6657
7047
|
*/
|
|
6658
7048
|
execution: AlertAfm;
|
|
6659
7049
|
/**
|
|
6660
7050
|
*
|
|
6661
7051
|
* @type {AlertCondition}
|
|
6662
|
-
* @memberof
|
|
7052
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6663
7053
|
*/
|
|
6664
7054
|
condition: AlertCondition;
|
|
6665
7055
|
/**
|
|
6666
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.
|
|
6667
7057
|
* @type {string}
|
|
6668
|
-
* @memberof
|
|
7058
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6669
7059
|
*/
|
|
6670
|
-
trigger?:
|
|
7060
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
6671
7061
|
}
|
|
6672
|
-
export declare const
|
|
7062
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
6673
7063
|
readonly ALWAYS: "ALWAYS";
|
|
6674
7064
|
readonly ONCE: "ONCE";
|
|
6675
7065
|
};
|
|
6676
|
-
export type
|
|
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
|
+
}
|
|
6677
7080
|
/**
|
|
6678
7081
|
*
|
|
6679
7082
|
* @export
|
|
6680
|
-
* @interface
|
|
7083
|
+
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
6681
7084
|
*/
|
|
6682
|
-
export interface
|
|
7085
|
+
export interface JsonApiAutomationInAttributesExternalRecipients {
|
|
6683
7086
|
/**
|
|
6684
7087
|
* E-mail address to send notifications from.
|
|
6685
7088
|
* @type {string}
|
|
6686
|
-
* @memberof
|
|
7089
|
+
* @memberof JsonApiAutomationInAttributesExternalRecipients
|
|
6687
7090
|
*/
|
|
6688
7091
|
email: string;
|
|
6689
7092
|
}
|
|
6690
7093
|
/**
|
|
6691
7094
|
*
|
|
6692
7095
|
* @export
|
|
6693
|
-
* @interface
|
|
7096
|
+
* @interface JsonApiAutomationInAttributesImageExports
|
|
6694
7097
|
*/
|
|
6695
|
-
export interface
|
|
7098
|
+
export interface JsonApiAutomationInAttributesImageExports {
|
|
6696
7099
|
/**
|
|
6697
7100
|
*
|
|
6698
7101
|
* @type {ImageExportRequest}
|
|
6699
|
-
* @memberof
|
|
7102
|
+
* @memberof JsonApiAutomationInAttributesImageExports
|
|
6700
7103
|
*/
|
|
6701
7104
|
requestPayload: ImageExportRequest;
|
|
6702
7105
|
}
|
|
6703
7106
|
/**
|
|
6704
7107
|
* Additional information for the automation.
|
|
6705
7108
|
* @export
|
|
6706
|
-
* @interface
|
|
7109
|
+
* @interface JsonApiAutomationInAttributesMetadata
|
|
6707
7110
|
*/
|
|
6708
|
-
export interface
|
|
7111
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
6709
7112
|
/**
|
|
6710
7113
|
*
|
|
6711
7114
|
* @type {string}
|
|
6712
|
-
* @memberof
|
|
7115
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
6713
7116
|
*/
|
|
6714
7117
|
widget?: string;
|
|
6715
7118
|
/**
|
|
6716
7119
|
*
|
|
6717
7120
|
* @type {Array<VisibleFilter>}
|
|
6718
|
-
* @memberof
|
|
7121
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
6719
7122
|
*/
|
|
6720
7123
|
visibleFilters?: Array<VisibleFilter>;
|
|
6721
7124
|
}
|
|
6722
7125
|
/**
|
|
6723
7126
|
*
|
|
6724
7127
|
* @export
|
|
6725
|
-
* @interface
|
|
7128
|
+
* @interface JsonApiAutomationInAttributesRawExports
|
|
6726
7129
|
*/
|
|
6727
|
-
export interface
|
|
7130
|
+
export interface JsonApiAutomationInAttributesRawExports {
|
|
6728
7131
|
/**
|
|
6729
7132
|
*
|
|
6730
7133
|
* @type {RawExportRequest}
|
|
6731
|
-
* @memberof
|
|
7134
|
+
* @memberof JsonApiAutomationInAttributesRawExports
|
|
6732
7135
|
*/
|
|
6733
7136
|
requestPayload: RawExportRequest;
|
|
6734
7137
|
}
|
|
6735
7138
|
/**
|
|
6736
7139
|
*
|
|
6737
7140
|
* @export
|
|
6738
|
-
* @interface
|
|
7141
|
+
* @interface JsonApiAutomationInAttributesSchedule
|
|
6739
7142
|
*/
|
|
6740
|
-
export interface
|
|
7143
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
6741
7144
|
/**
|
|
6742
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.
|
|
6743
7146
|
* @type {string}
|
|
6744
|
-
* @memberof
|
|
7147
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6745
7148
|
*/
|
|
6746
7149
|
cron: string;
|
|
6747
7150
|
/**
|
|
6748
7151
|
* Human-readable description of the cron expression.
|
|
6749
7152
|
* @type {string}
|
|
6750
|
-
* @memberof
|
|
7153
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6751
7154
|
*/
|
|
6752
7155
|
cronDescription?: string;
|
|
6753
7156
|
/**
|
|
6754
7157
|
* Timezone in which the schedule is defined.
|
|
6755
7158
|
* @type {string}
|
|
6756
|
-
* @memberof
|
|
7159
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6757
7160
|
*/
|
|
6758
7161
|
timezone: string;
|
|
6759
7162
|
/**
|
|
6760
7163
|
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6761
7164
|
* @type {string}
|
|
6762
|
-
* @memberof
|
|
7165
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6763
7166
|
*/
|
|
6764
7167
|
firstRun?: string;
|
|
6765
7168
|
}
|
|
6766
7169
|
/**
|
|
6767
7170
|
*
|
|
6768
7171
|
* @export
|
|
6769
|
-
* @interface
|
|
7172
|
+
* @interface JsonApiAutomationInAttributesSlidesExports
|
|
6770
7173
|
*/
|
|
6771
|
-
export interface
|
|
7174
|
+
export interface JsonApiAutomationInAttributesSlidesExports {
|
|
6772
7175
|
/**
|
|
6773
7176
|
*
|
|
6774
7177
|
* @type {SlidesExportRequest}
|
|
6775
|
-
* @memberof
|
|
7178
|
+
* @memberof JsonApiAutomationInAttributesSlidesExports
|
|
6776
7179
|
*/
|
|
6777
7180
|
requestPayload: SlidesExportRequest;
|
|
6778
7181
|
}
|
|
6779
7182
|
/**
|
|
6780
7183
|
*
|
|
6781
7184
|
* @export
|
|
6782
|
-
* @interface
|
|
7185
|
+
* @interface JsonApiAutomationInAttributesTabularExports
|
|
6783
7186
|
*/
|
|
6784
|
-
export interface
|
|
7187
|
+
export interface JsonApiAutomationInAttributesTabularExports {
|
|
6785
7188
|
/**
|
|
6786
7189
|
*
|
|
6787
7190
|
* @type {TabularExportRequest}
|
|
6788
|
-
* @memberof
|
|
7191
|
+
* @memberof JsonApiAutomationInAttributesTabularExports
|
|
6789
7192
|
*/
|
|
6790
7193
|
requestPayload: TabularExportRequest;
|
|
6791
7194
|
}
|
|
6792
7195
|
/**
|
|
6793
7196
|
*
|
|
6794
7197
|
* @export
|
|
6795
|
-
* @interface
|
|
7198
|
+
* @interface JsonApiAutomationInAttributesVisualExports
|
|
6796
7199
|
*/
|
|
6797
|
-
export interface
|
|
7200
|
+
export interface JsonApiAutomationInAttributesVisualExports {
|
|
6798
7201
|
/**
|
|
6799
7202
|
*
|
|
6800
7203
|
* @type {VisualExportRequest}
|
|
6801
|
-
* @memberof
|
|
7204
|
+
* @memberof JsonApiAutomationInAttributesVisualExports
|
|
6802
7205
|
*/
|
|
6803
7206
|
requestPayload: VisualExportRequest;
|
|
6804
7207
|
}
|
|
6805
7208
|
/**
|
|
6806
7209
|
*
|
|
6807
7210
|
* @export
|
|
6808
|
-
* @interface
|
|
7211
|
+
* @interface JsonApiAutomationInDocument
|
|
6809
7212
|
*/
|
|
6810
|
-
export interface
|
|
6811
|
-
/**
|
|
6812
|
-
*
|
|
6813
|
-
* @type {JsonApiAutomationOut}
|
|
6814
|
-
* @memberof JsonApiAutomationOutDocument
|
|
6815
|
-
*/
|
|
6816
|
-
data: JsonApiAutomationOut;
|
|
7213
|
+
export interface JsonApiAutomationInDocument {
|
|
6817
7214
|
/**
|
|
6818
7215
|
*
|
|
6819
|
-
* @type {
|
|
6820
|
-
* @memberof
|
|
6821
|
-
*/
|
|
6822
|
-
links?: ObjectLinks;
|
|
6823
|
-
/**
|
|
6824
|
-
* Included resources
|
|
6825
|
-
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6826
|
-
* @memberof JsonApiAutomationOutDocument
|
|
7216
|
+
* @type {JsonApiAutomationIn}
|
|
7217
|
+
* @memberof JsonApiAutomationInDocument
|
|
6827
7218
|
*/
|
|
6828
|
-
|
|
7219
|
+
data: JsonApiAutomationIn;
|
|
6829
7220
|
}
|
|
6830
7221
|
/**
|
|
6831
|
-
*
|
|
6832
|
-
* @export
|
|
6833
|
-
*/
|
|
6834
|
-
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
6835
|
-
/**
|
|
6836
|
-
* A JSON:API document with a list of resources
|
|
7222
|
+
*
|
|
6837
7223
|
* @export
|
|
6838
|
-
* @interface
|
|
7224
|
+
* @interface JsonApiAutomationInRelationships
|
|
6839
7225
|
*/
|
|
6840
|
-
export interface
|
|
7226
|
+
export interface JsonApiAutomationInRelationships {
|
|
6841
7227
|
/**
|
|
6842
7228
|
*
|
|
6843
|
-
* @type {
|
|
6844
|
-
* @memberof
|
|
7229
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
7230
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6845
7231
|
*/
|
|
6846
|
-
|
|
7232
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
6847
7233
|
/**
|
|
6848
7234
|
*
|
|
6849
|
-
* @type {
|
|
6850
|
-
* @memberof
|
|
7235
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
7236
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6851
7237
|
*/
|
|
6852
|
-
|
|
7238
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
6853
7239
|
/**
|
|
6854
7240
|
*
|
|
6855
|
-
* @type {
|
|
6856
|
-
* @memberof
|
|
7241
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
7242
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6857
7243
|
*/
|
|
6858
|
-
|
|
7244
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
6859
7245
|
/**
|
|
6860
|
-
*
|
|
6861
|
-
* @type {
|
|
6862
|
-
* @memberof
|
|
7246
|
+
*
|
|
7247
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
7248
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6863
7249
|
*/
|
|
6864
|
-
|
|
7250
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
6865
7251
|
}
|
|
6866
7252
|
/**
|
|
6867
7253
|
*
|
|
6868
7254
|
* @export
|
|
6869
|
-
* @interface
|
|
7255
|
+
* @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
6870
7256
|
*/
|
|
6871
|
-
export interface
|
|
6872
|
-
/**
|
|
6873
|
-
*
|
|
6874
|
-
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
6875
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6876
|
-
*/
|
|
6877
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
6878
|
-
/**
|
|
6879
|
-
*
|
|
6880
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
6881
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6882
|
-
*/
|
|
6883
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6884
|
-
/**
|
|
6885
|
-
*
|
|
6886
|
-
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
6887
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6888
|
-
*/
|
|
6889
|
-
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6890
|
-
/**
|
|
6891
|
-
*
|
|
6892
|
-
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
6893
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6894
|
-
*/
|
|
6895
|
-
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7257
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
6896
7258
|
/**
|
|
6897
7259
|
*
|
|
6898
|
-
* @type {
|
|
6899
|
-
* @memberof
|
|
6900
|
-
*/
|
|
6901
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
6902
|
-
/**
|
|
6903
|
-
*
|
|
6904
|
-
* @type {JsonApiAutomationOutRelationshipsRecipients}
|
|
6905
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
7260
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
7261
|
+
* @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
6906
7262
|
*/
|
|
6907
|
-
|
|
7263
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
6908
7264
|
}
|
|
6909
7265
|
/**
|
|
6910
7266
|
*
|
|
6911
7267
|
* @export
|
|
6912
|
-
* @interface
|
|
7268
|
+
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
6913
7269
|
*/
|
|
6914
|
-
export interface
|
|
7270
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
6915
7271
|
/**
|
|
6916
7272
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6917
7273
|
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6918
|
-
* @memberof
|
|
7274
|
+
* @memberof JsonApiAutomationInRelationshipsExportDefinitions
|
|
6919
7275
|
*/
|
|
6920
7276
|
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6921
7277
|
}
|
|
6922
7278
|
/**
|
|
6923
7279
|
*
|
|
6924
7280
|
* @export
|
|
6925
|
-
* @interface
|
|
7281
|
+
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
6926
7282
|
*/
|
|
6927
|
-
export interface
|
|
7283
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
6928
7284
|
/**
|
|
6929
7285
|
*
|
|
6930
7286
|
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6931
|
-
* @memberof
|
|
7287
|
+
* @memberof JsonApiAutomationInRelationshipsNotificationChannel
|
|
6932
7288
|
*/
|
|
6933
7289
|
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6934
7290
|
}
|
|
6935
7291
|
/**
|
|
6936
7292
|
*
|
|
6937
7293
|
* @export
|
|
6938
|
-
* @interface
|
|
7294
|
+
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
6939
7295
|
*/
|
|
6940
|
-
export interface
|
|
7296
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
6941
7297
|
/**
|
|
6942
7298
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6943
7299
|
* @type {Array<JsonApiUserLinkage>}
|
|
6944
|
-
* @memberof
|
|
7300
|
+
* @memberof JsonApiAutomationInRelationshipsRecipients
|
|
6945
7301
|
*/
|
|
6946
7302
|
data: Array<JsonApiUserLinkage>;
|
|
6947
7303
|
}
|
|
6948
7304
|
/**
|
|
6949
|
-
*
|
|
7305
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6950
7306
|
* @export
|
|
6951
|
-
* @interface
|
|
7307
|
+
* @interface JsonApiAutomationLinkage
|
|
6952
7308
|
*/
|
|
6953
|
-
export interface
|
|
6954
|
-
/**
|
|
6955
|
-
* Object type
|
|
6956
|
-
* @type {string}
|
|
6957
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6958
|
-
*/
|
|
6959
|
-
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
7309
|
+
export interface JsonApiAutomationLinkage {
|
|
6960
7310
|
/**
|
|
6961
|
-
*
|
|
7311
|
+
*
|
|
6962
7312
|
* @type {string}
|
|
6963
|
-
* @memberof
|
|
7313
|
+
* @memberof JsonApiAutomationLinkage
|
|
6964
7314
|
*/
|
|
6965
7315
|
id: string;
|
|
6966
7316
|
/**
|
|
6967
7317
|
*
|
|
6968
|
-
* @type {
|
|
6969
|
-
* @memberof
|
|
6970
|
-
*/
|
|
6971
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6972
|
-
/**
|
|
6973
|
-
*
|
|
6974
|
-
* @type {JsonApiAutomationOutAttributes}
|
|
6975
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6976
|
-
*/
|
|
6977
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
6978
|
-
/**
|
|
6979
|
-
*
|
|
6980
|
-
* @type {JsonApiAutomationOutRelationships}
|
|
6981
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6982
|
-
*/
|
|
6983
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
6984
|
-
/**
|
|
6985
|
-
*
|
|
6986
|
-
* @type {ObjectLinks}
|
|
6987
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
7318
|
+
* @type {string}
|
|
7319
|
+
* @memberof JsonApiAutomationLinkage
|
|
6988
7320
|
*/
|
|
6989
|
-
|
|
7321
|
+
type: JsonApiAutomationLinkageTypeEnum;
|
|
6990
7322
|
}
|
|
6991
|
-
export declare const
|
|
7323
|
+
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
6992
7324
|
readonly AUTOMATION: "automation";
|
|
6993
7325
|
};
|
|
6994
|
-
export type
|
|
7326
|
+
export type JsonApiAutomationLinkageTypeEnum = typeof JsonApiAutomationLinkageTypeEnum[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
6995
7327
|
/**
|
|
6996
|
-
* JSON:API representation of
|
|
7328
|
+
* JSON:API representation of automation entity.
|
|
6997
7329
|
* @export
|
|
6998
|
-
* @interface
|
|
7330
|
+
* @interface JsonApiAutomationOut
|
|
6999
7331
|
*/
|
|
7000
|
-
export interface
|
|
7332
|
+
export interface JsonApiAutomationOut {
|
|
7001
7333
|
/**
|
|
7002
7334
|
* Object type
|
|
7003
7335
|
* @type {string}
|
|
7004
|
-
* @memberof
|
|
7336
|
+
* @memberof JsonApiAutomationOut
|
|
7005
7337
|
*/
|
|
7006
|
-
type:
|
|
7338
|
+
type: JsonApiAutomationOutTypeEnum;
|
|
7007
7339
|
/**
|
|
7008
7340
|
* API identifier of an object
|
|
7009
7341
|
* @type {string}
|
|
7010
|
-
* @memberof
|
|
7342
|
+
* @memberof JsonApiAutomationOut
|
|
7011
7343
|
*/
|
|
7012
7344
|
id: string;
|
|
7013
7345
|
/**
|
|
7014
7346
|
*
|
|
7015
|
-
* @type {
|
|
7016
|
-
* @memberof
|
|
7347
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7348
|
+
* @memberof JsonApiAutomationOut
|
|
7017
7349
|
*/
|
|
7018
|
-
|
|
7350
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7019
7351
|
/**
|
|
7020
7352
|
*
|
|
7021
|
-
* @type {
|
|
7022
|
-
* @memberof
|
|
7353
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7354
|
+
* @memberof JsonApiAutomationOut
|
|
7023
7355
|
*/
|
|
7024
|
-
|
|
7356
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7357
|
+
/**
|
|
7358
|
+
*
|
|
7359
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7360
|
+
* @memberof JsonApiAutomationOut
|
|
7361
|
+
*/
|
|
7362
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7025
7363
|
}
|
|
7026
|
-
export declare const
|
|
7364
|
+
export declare const JsonApiAutomationOutTypeEnum: {
|
|
7027
7365
|
readonly AUTOMATION: "automation";
|
|
7028
7366
|
};
|
|
7029
|
-
export type
|
|
7367
|
+
export type JsonApiAutomationOutTypeEnum = typeof JsonApiAutomationOutTypeEnum[keyof typeof JsonApiAutomationOutTypeEnum];
|
|
7030
7368
|
/**
|
|
7031
7369
|
*
|
|
7032
7370
|
* @export
|
|
7033
|
-
* @interface
|
|
7371
|
+
* @interface JsonApiAutomationOutAttributes
|
|
7034
7372
|
*/
|
|
7035
|
-
export interface
|
|
7373
|
+
export interface JsonApiAutomationOutAttributes {
|
|
7036
7374
|
/**
|
|
7037
7375
|
*
|
|
7038
7376
|
* @type {string}
|
|
7039
|
-
* @memberof
|
|
7377
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7040
7378
|
*/
|
|
7041
7379
|
title?: string;
|
|
7042
7380
|
/**
|
|
7043
7381
|
*
|
|
7044
7382
|
* @type {string}
|
|
7045
|
-
* @memberof
|
|
7383
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7046
7384
|
*/
|
|
7047
7385
|
description?: string;
|
|
7048
7386
|
/**
|
|
7049
7387
|
*
|
|
7050
7388
|
* @type {Array<string>}
|
|
7051
|
-
* @memberof
|
|
7389
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7052
7390
|
*/
|
|
7053
7391
|
tags?: Array<string>;
|
|
7054
7392
|
/**
|
|
7055
7393
|
*
|
|
7056
7394
|
* @type {boolean}
|
|
7057
|
-
* @memberof
|
|
7395
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7058
7396
|
*/
|
|
7059
7397
|
areRelationsValid?: boolean;
|
|
7060
7398
|
/**
|
|
7061
7399
|
* Additional details to be included in the automated message.
|
|
7062
7400
|
* @type {any}
|
|
7063
|
-
* @memberof
|
|
7401
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7064
7402
|
*/
|
|
7065
7403
|
details?: any;
|
|
7066
7404
|
/**
|
|
7067
7405
|
*
|
|
7068
|
-
* @type {
|
|
7069
|
-
* @memberof
|
|
7406
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
7407
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7070
7408
|
*/
|
|
7071
|
-
metadata?:
|
|
7409
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
7072
7410
|
/**
|
|
7073
7411
|
* Current state of the automation.
|
|
7074
7412
|
* @type {string}
|
|
7075
|
-
* @memberof
|
|
7413
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7076
7414
|
*/
|
|
7077
|
-
state?:
|
|
7415
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
7078
7416
|
/**
|
|
7079
7417
|
*
|
|
7080
|
-
* @type {
|
|
7081
|
-
* @memberof
|
|
7418
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
7419
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7082
7420
|
*/
|
|
7083
|
-
schedule?:
|
|
7421
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
7084
7422
|
/**
|
|
7085
7423
|
*
|
|
7086
|
-
* @type {
|
|
7087
|
-
* @memberof
|
|
7424
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
7425
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7426
|
+
*/
|
|
7427
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
7428
|
+
/**
|
|
7429
|
+
*
|
|
7430
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
7431
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7088
7432
|
*/
|
|
7089
|
-
|
|
7433
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
7090
7434
|
/**
|
|
7091
7435
|
*
|
|
7092
|
-
* @type {Array<
|
|
7093
|
-
* @memberof
|
|
7436
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
7437
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7094
7438
|
*/
|
|
7095
|
-
|
|
7439
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
7096
7440
|
/**
|
|
7097
7441
|
*
|
|
7098
|
-
* @type {Array<
|
|
7099
|
-
* @memberof
|
|
7442
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
7443
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7100
7444
|
*/
|
|
7101
|
-
|
|
7445
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
7102
7446
|
/**
|
|
7103
7447
|
*
|
|
7104
|
-
* @type {Array<
|
|
7105
|
-
* @memberof
|
|
7448
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
7449
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7106
7450
|
*/
|
|
7107
|
-
|
|
7451
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
7108
7452
|
/**
|
|
7109
7453
|
*
|
|
7110
|
-
* @type {Array<
|
|
7111
|
-
* @memberof
|
|
7454
|
+
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
7455
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7112
7456
|
*/
|
|
7113
|
-
|
|
7457
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
7114
7458
|
/**
|
|
7115
7459
|
*
|
|
7116
|
-
* @type {Array<
|
|
7117
|
-
* @memberof
|
|
7460
|
+
* @type {Array<JsonApiAutomationInAttributesDashboardTabularExports>}
|
|
7461
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7118
7462
|
*/
|
|
7119
|
-
|
|
7463
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExports>;
|
|
7120
7464
|
/**
|
|
7121
7465
|
* External recipients of the automation action results.
|
|
7122
|
-
* @type {Array<
|
|
7123
|
-
* @memberof
|
|
7466
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
7467
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7468
|
+
*/
|
|
7469
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
7470
|
+
/**
|
|
7471
|
+
*
|
|
7472
|
+
* @type {string}
|
|
7473
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7124
7474
|
*/
|
|
7125
|
-
|
|
7475
|
+
createdAt?: string;
|
|
7476
|
+
/**
|
|
7477
|
+
*
|
|
7478
|
+
* @type {string}
|
|
7479
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
7480
|
+
*/
|
|
7481
|
+
modifiedAt?: string;
|
|
7126
7482
|
}
|
|
7127
|
-
export declare const
|
|
7483
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
7128
7484
|
readonly ACTIVE: "ACTIVE";
|
|
7129
7485
|
readonly PAUSED: "PAUSED";
|
|
7130
7486
|
};
|
|
7131
|
-
export type
|
|
7487
|
+
export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
7132
7488
|
/**
|
|
7133
7489
|
*
|
|
7134
7490
|
* @export
|
|
7135
|
-
* @interface
|
|
7491
|
+
* @interface JsonApiAutomationOutDocument
|
|
7136
7492
|
*/
|
|
7137
|
-
export interface
|
|
7493
|
+
export interface JsonApiAutomationOutDocument {
|
|
7138
7494
|
/**
|
|
7139
7495
|
*
|
|
7140
|
-
* @type {
|
|
7141
|
-
* @memberof
|
|
7496
|
+
* @type {JsonApiAutomationOut}
|
|
7497
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7142
7498
|
*/
|
|
7143
|
-
data:
|
|
7499
|
+
data: JsonApiAutomationOut;
|
|
7500
|
+
/**
|
|
7501
|
+
*
|
|
7502
|
+
* @type {ObjectLinks}
|
|
7503
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7504
|
+
*/
|
|
7505
|
+
links?: ObjectLinks;
|
|
7506
|
+
/**
|
|
7507
|
+
* Included resources
|
|
7508
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7509
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7510
|
+
*/
|
|
7511
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7512
|
+
}
|
|
7513
|
+
/**
|
|
7514
|
+
* @type JsonApiAutomationOutIncludes
|
|
7515
|
+
* @export
|
|
7516
|
+
*/
|
|
7517
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7518
|
+
/**
|
|
7519
|
+
* A JSON:API document with a list of resources
|
|
7520
|
+
* @export
|
|
7521
|
+
* @interface JsonApiAutomationOutList
|
|
7522
|
+
*/
|
|
7523
|
+
export interface JsonApiAutomationOutList {
|
|
7524
|
+
/**
|
|
7525
|
+
*
|
|
7526
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
7527
|
+
* @memberof JsonApiAutomationOutList
|
|
7528
|
+
*/
|
|
7529
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
7530
|
+
/**
|
|
7531
|
+
*
|
|
7532
|
+
* @type {ListLinks}
|
|
7533
|
+
* @memberof JsonApiAutomationOutList
|
|
7534
|
+
*/
|
|
7535
|
+
links?: ListLinks;
|
|
7536
|
+
/**
|
|
7537
|
+
*
|
|
7538
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7539
|
+
* @memberof JsonApiAutomationOutList
|
|
7540
|
+
*/
|
|
7541
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7542
|
+
/**
|
|
7543
|
+
* Included resources
|
|
7544
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7545
|
+
* @memberof JsonApiAutomationOutList
|
|
7546
|
+
*/
|
|
7547
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7144
7548
|
}
|
|
7145
7549
|
/**
|
|
7146
7550
|
*
|
|
7147
7551
|
* @export
|
|
7148
|
-
* @interface
|
|
7552
|
+
* @interface JsonApiAutomationOutRelationships
|
|
7149
7553
|
*/
|
|
7150
|
-
export interface
|
|
7554
|
+
export interface JsonApiAutomationOutRelationships {
|
|
7555
|
+
/**
|
|
7556
|
+
*
|
|
7557
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
7558
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7559
|
+
*/
|
|
7560
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
7561
|
+
/**
|
|
7562
|
+
*
|
|
7563
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
7564
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7565
|
+
*/
|
|
7566
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
7567
|
+
/**
|
|
7568
|
+
*
|
|
7569
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7570
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7571
|
+
*/
|
|
7572
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7573
|
+
/**
|
|
7574
|
+
*
|
|
7575
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7576
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7577
|
+
*/
|
|
7578
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7579
|
+
/**
|
|
7580
|
+
*
|
|
7581
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
7582
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7583
|
+
*/
|
|
7584
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
7585
|
+
/**
|
|
7586
|
+
*
|
|
7587
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
7588
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7589
|
+
*/
|
|
7590
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
7591
|
+
}
|
|
7592
|
+
/**
|
|
7593
|
+
*
|
|
7594
|
+
* @export
|
|
7595
|
+
* @interface JsonApiAutomationOutWithLinks
|
|
7596
|
+
*/
|
|
7597
|
+
export interface JsonApiAutomationOutWithLinks {
|
|
7598
|
+
/**
|
|
7599
|
+
* Object type
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7602
|
+
*/
|
|
7603
|
+
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
7604
|
+
/**
|
|
7605
|
+
* API identifier of an object
|
|
7606
|
+
* @type {string}
|
|
7607
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7608
|
+
*/
|
|
7609
|
+
id: string;
|
|
7151
7610
|
/**
|
|
7152
7611
|
*
|
|
7153
|
-
* @type {
|
|
7154
|
-
* @memberof
|
|
7612
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7613
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7155
7614
|
*/
|
|
7156
|
-
|
|
7615
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7157
7616
|
/**
|
|
7158
7617
|
*
|
|
7159
|
-
* @type {
|
|
7160
|
-
* @memberof
|
|
7618
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7619
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7161
7620
|
*/
|
|
7162
|
-
|
|
7621
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7163
7622
|
/**
|
|
7164
7623
|
*
|
|
7165
|
-
* @type {
|
|
7166
|
-
* @memberof
|
|
7624
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7625
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7167
7626
|
*/
|
|
7168
|
-
|
|
7627
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7169
7628
|
/**
|
|
7170
7629
|
*
|
|
7171
|
-
* @type {
|
|
7172
|
-
* @memberof
|
|
7630
|
+
* @type {ObjectLinks}
|
|
7631
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7173
7632
|
*/
|
|
7174
|
-
|
|
7633
|
+
links?: ObjectLinks;
|
|
7634
|
+
}
|
|
7635
|
+
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
7636
|
+
readonly AUTOMATION: "automation";
|
|
7637
|
+
};
|
|
7638
|
+
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
7639
|
+
/**
|
|
7640
|
+
* JSON:API representation of patching automation entity.
|
|
7641
|
+
* @export
|
|
7642
|
+
* @interface JsonApiAutomationPatch
|
|
7643
|
+
*/
|
|
7644
|
+
export interface JsonApiAutomationPatch {
|
|
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;
|
|
7657
|
+
/**
|
|
7658
|
+
*
|
|
7659
|
+
* @type {JsonApiAutomationInAttributes}
|
|
7660
|
+
* @memberof JsonApiAutomationPatch
|
|
7661
|
+
*/
|
|
7662
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
7663
|
+
/**
|
|
7664
|
+
*
|
|
7665
|
+
* @type {JsonApiAutomationInRelationships}
|
|
7666
|
+
* @memberof JsonApiAutomationPatch
|
|
7667
|
+
*/
|
|
7668
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
7669
|
+
}
|
|
7670
|
+
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7671
|
+
readonly AUTOMATION: "automation";
|
|
7672
|
+
};
|
|
7673
|
+
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7674
|
+
/**
|
|
7675
|
+
*
|
|
7676
|
+
* @export
|
|
7677
|
+
* @interface JsonApiAutomationPatchDocument
|
|
7678
|
+
*/
|
|
7679
|
+
export interface JsonApiAutomationPatchDocument {
|
|
7680
|
+
/**
|
|
7681
|
+
*
|
|
7682
|
+
* @type {JsonApiAutomationPatch}
|
|
7683
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
7684
|
+
*/
|
|
7685
|
+
data: JsonApiAutomationPatch;
|
|
7175
7686
|
}
|
|
7176
7687
|
/**
|
|
7177
7688
|
* @type JsonApiAutomationToOneLinkage
|
|
@@ -7308,10 +7819,23 @@ export interface JsonApiColorPaletteOutList {
|
|
|
7308
7819
|
links?: ListLinks;
|
|
7309
7820
|
/**
|
|
7310
7821
|
*
|
|
7311
|
-
* @type {
|
|
7822
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7312
7823
|
* @memberof JsonApiColorPaletteOutList
|
|
7313
7824
|
*/
|
|
7314
|
-
meta?:
|
|
7825
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7826
|
+
}
|
|
7827
|
+
/**
|
|
7828
|
+
*
|
|
7829
|
+
* @export
|
|
7830
|
+
* @interface JsonApiColorPaletteOutListMeta
|
|
7831
|
+
*/
|
|
7832
|
+
export interface JsonApiColorPaletteOutListMeta {
|
|
7833
|
+
/**
|
|
7834
|
+
*
|
|
7835
|
+
* @type {PageMetadata}
|
|
7836
|
+
* @memberof JsonApiColorPaletteOutListMeta
|
|
7837
|
+
*/
|
|
7838
|
+
page?: PageMetadata;
|
|
7315
7839
|
}
|
|
7316
7840
|
/**
|
|
7317
7841
|
*
|
|
@@ -7683,10 +8207,10 @@ export interface JsonApiCspDirectiveOutList {
|
|
|
7683
8207
|
links?: ListLinks;
|
|
7684
8208
|
/**
|
|
7685
8209
|
*
|
|
7686
|
-
* @type {
|
|
8210
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7687
8211
|
* @memberof JsonApiCspDirectiveOutList
|
|
7688
8212
|
*/
|
|
7689
|
-
meta?:
|
|
8213
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7690
8214
|
}
|
|
7691
8215
|
/**
|
|
7692
8216
|
*
|
|
@@ -7798,15 +8322,34 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
7798
8322
|
id: string;
|
|
7799
8323
|
/**
|
|
7800
8324
|
*
|
|
7801
|
-
* @type {
|
|
8325
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7802
8326
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
7803
8327
|
*/
|
|
7804
|
-
attributes:
|
|
8328
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7805
8329
|
}
|
|
7806
8330
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
7807
8331
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
7808
8332
|
};
|
|
7809
8333
|
export type JsonApiCustomApplicationSettingInTypeEnum = typeof JsonApiCustomApplicationSettingInTypeEnum[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
8334
|
+
/**
|
|
8335
|
+
*
|
|
8336
|
+
* @export
|
|
8337
|
+
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
8338
|
+
*/
|
|
8339
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
8340
|
+
/**
|
|
8341
|
+
*
|
|
8342
|
+
* @type {string}
|
|
8343
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8344
|
+
*/
|
|
8345
|
+
applicationName: string;
|
|
8346
|
+
/**
|
|
8347
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8348
|
+
* @type {object}
|
|
8349
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
8350
|
+
*/
|
|
8351
|
+
content: object;
|
|
8352
|
+
}
|
|
7810
8353
|
/**
|
|
7811
8354
|
*
|
|
7812
8355
|
* @export
|
|
@@ -7846,34 +8389,15 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
7846
8389
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7847
8390
|
/**
|
|
7848
8391
|
*
|
|
7849
|
-
* @type {
|
|
8392
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7850
8393
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
7851
8394
|
*/
|
|
7852
|
-
attributes:
|
|
8395
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7853
8396
|
}
|
|
7854
8397
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
7855
8398
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
7856
8399
|
};
|
|
7857
8400
|
export type JsonApiCustomApplicationSettingOutTypeEnum = typeof JsonApiCustomApplicationSettingOutTypeEnum[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
7858
|
-
/**
|
|
7859
|
-
*
|
|
7860
|
-
* @export
|
|
7861
|
-
* @interface JsonApiCustomApplicationSettingOutAttributes
|
|
7862
|
-
*/
|
|
7863
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
7864
|
-
/**
|
|
7865
|
-
*
|
|
7866
|
-
* @type {string}
|
|
7867
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
7868
|
-
*/
|
|
7869
|
-
applicationName: string;
|
|
7870
|
-
/**
|
|
7871
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7872
|
-
* @type {object}
|
|
7873
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
7874
|
-
*/
|
|
7875
|
-
content: object;
|
|
7876
|
-
}
|
|
7877
8401
|
/**
|
|
7878
8402
|
*
|
|
7879
8403
|
* @export
|
|
@@ -7913,10 +8437,10 @@ export interface JsonApiCustomApplicationSettingOutList {
|
|
|
7913
8437
|
links?: ListLinks;
|
|
7914
8438
|
/**
|
|
7915
8439
|
*
|
|
7916
|
-
* @type {
|
|
8440
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
7917
8441
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
7918
8442
|
*/
|
|
7919
|
-
meta?:
|
|
8443
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
7920
8444
|
}
|
|
7921
8445
|
/**
|
|
7922
8446
|
*
|
|
@@ -7944,10 +8468,10 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
7944
8468
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7945
8469
|
/**
|
|
7946
8470
|
*
|
|
7947
|
-
* @type {
|
|
8471
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7948
8472
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
7949
8473
|
*/
|
|
7950
|
-
attributes:
|
|
8474
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7951
8475
|
/**
|
|
7952
8476
|
*
|
|
7953
8477
|
* @type {ObjectLinks}
|
|
@@ -8040,10 +8564,10 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
8040
8564
|
id?: string;
|
|
8041
8565
|
/**
|
|
8042
8566
|
*
|
|
8043
|
-
* @type {
|
|
8567
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
8044
8568
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
8045
8569
|
*/
|
|
8046
|
-
attributes:
|
|
8570
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
8047
8571
|
}
|
|
8048
8572
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
8049
8573
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -8082,15 +8606,52 @@ export interface JsonApiDashboardPluginIn {
|
|
|
8082
8606
|
id: string;
|
|
8083
8607
|
/**
|
|
8084
8608
|
*
|
|
8085
|
-
* @type {
|
|
8609
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8086
8610
|
* @memberof JsonApiDashboardPluginIn
|
|
8087
8611
|
*/
|
|
8088
|
-
attributes?:
|
|
8612
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8089
8613
|
}
|
|
8090
8614
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
8091
8615
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8092
8616
|
};
|
|
8093
8617
|
export type JsonApiDashboardPluginInTypeEnum = typeof JsonApiDashboardPluginInTypeEnum[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
8618
|
+
/**
|
|
8619
|
+
*
|
|
8620
|
+
* @export
|
|
8621
|
+
* @interface JsonApiDashboardPluginInAttributes
|
|
8622
|
+
*/
|
|
8623
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
8624
|
+
/**
|
|
8625
|
+
*
|
|
8626
|
+
* @type {string}
|
|
8627
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8628
|
+
*/
|
|
8629
|
+
title?: string;
|
|
8630
|
+
/**
|
|
8631
|
+
*
|
|
8632
|
+
* @type {string}
|
|
8633
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8634
|
+
*/
|
|
8635
|
+
description?: string;
|
|
8636
|
+
/**
|
|
8637
|
+
*
|
|
8638
|
+
* @type {Array<string>}
|
|
8639
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8640
|
+
*/
|
|
8641
|
+
tags?: Array<string>;
|
|
8642
|
+
/**
|
|
8643
|
+
*
|
|
8644
|
+
* @type {boolean}
|
|
8645
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8646
|
+
*/
|
|
8647
|
+
areRelationsValid?: boolean;
|
|
8648
|
+
/**
|
|
8649
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8650
|
+
* @type {object}
|
|
8651
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8652
|
+
*/
|
|
8653
|
+
content?: object;
|
|
8654
|
+
}
|
|
8094
8655
|
/**
|
|
8095
8656
|
*
|
|
8096
8657
|
* @export
|
|
@@ -8262,10 +8823,10 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
8262
8823
|
links?: ListLinks;
|
|
8263
8824
|
/**
|
|
8264
8825
|
*
|
|
8265
|
-
* @type {
|
|
8826
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
8266
8827
|
* @memberof JsonApiDashboardPluginOutList
|
|
8267
8828
|
*/
|
|
8268
|
-
meta?:
|
|
8829
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8269
8830
|
/**
|
|
8270
8831
|
* Included resources
|
|
8271
8832
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -8359,52 +8920,15 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
8359
8920
|
id: string;
|
|
8360
8921
|
/**
|
|
8361
8922
|
*
|
|
8362
|
-
* @type {
|
|
8923
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8363
8924
|
* @memberof JsonApiDashboardPluginPatch
|
|
8364
8925
|
*/
|
|
8365
|
-
attributes?:
|
|
8926
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8366
8927
|
}
|
|
8367
8928
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
8368
8929
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8369
8930
|
};
|
|
8370
8931
|
export type JsonApiDashboardPluginPatchTypeEnum = typeof JsonApiDashboardPluginPatchTypeEnum[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
8371
|
-
/**
|
|
8372
|
-
*
|
|
8373
|
-
* @export
|
|
8374
|
-
* @interface JsonApiDashboardPluginPatchAttributes
|
|
8375
|
-
*/
|
|
8376
|
-
export interface JsonApiDashboardPluginPatchAttributes {
|
|
8377
|
-
/**
|
|
8378
|
-
*
|
|
8379
|
-
* @type {string}
|
|
8380
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8381
|
-
*/
|
|
8382
|
-
title?: string;
|
|
8383
|
-
/**
|
|
8384
|
-
*
|
|
8385
|
-
* @type {string}
|
|
8386
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8387
|
-
*/
|
|
8388
|
-
description?: string;
|
|
8389
|
-
/**
|
|
8390
|
-
*
|
|
8391
|
-
* @type {Array<string>}
|
|
8392
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8393
|
-
*/
|
|
8394
|
-
tags?: Array<string>;
|
|
8395
|
-
/**
|
|
8396
|
-
*
|
|
8397
|
-
* @type {boolean}
|
|
8398
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8399
|
-
*/
|
|
8400
|
-
areRelationsValid?: boolean;
|
|
8401
|
-
/**
|
|
8402
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8403
|
-
* @type {object}
|
|
8404
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8405
|
-
*/
|
|
8406
|
-
content?: object;
|
|
8407
|
-
}
|
|
8408
8932
|
/**
|
|
8409
8933
|
*
|
|
8410
8934
|
* @export
|
|
@@ -8438,10 +8962,10 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
8438
8962
|
id?: string;
|
|
8439
8963
|
/**
|
|
8440
8964
|
*
|
|
8441
|
-
* @type {
|
|
8965
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8442
8966
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
8443
8967
|
*/
|
|
8444
|
-
attributes?:
|
|
8968
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8445
8969
|
}
|
|
8446
8970
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
8447
8971
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -8587,10 +9111,10 @@ export interface JsonApiDataSourceIdentifierOutList {
|
|
|
8587
9111
|
links?: ListLinks;
|
|
8588
9112
|
/**
|
|
8589
9113
|
*
|
|
8590
|
-
* @type {
|
|
9114
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
8591
9115
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
8592
9116
|
*/
|
|
8593
|
-
meta?:
|
|
9117
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
8594
9118
|
}
|
|
8595
9119
|
/**
|
|
8596
9120
|
*
|
|
@@ -9012,10 +9536,10 @@ export interface JsonApiDataSourceOutList {
|
|
|
9012
9536
|
links?: ListLinks;
|
|
9013
9537
|
/**
|
|
9014
9538
|
*
|
|
9015
|
-
* @type {
|
|
9539
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
9016
9540
|
* @memberof JsonApiDataSourceOutList
|
|
9017
9541
|
*/
|
|
9018
|
-
meta?:
|
|
9542
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
9019
9543
|
}
|
|
9020
9544
|
/**
|
|
9021
9545
|
*
|
|
@@ -9576,10 +10100,10 @@ export interface JsonApiDatasetOutList {
|
|
|
9576
10100
|
links?: ListLinks;
|
|
9577
10101
|
/**
|
|
9578
10102
|
*
|
|
9579
|
-
* @type {
|
|
10103
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
9580
10104
|
* @memberof JsonApiDatasetOutList
|
|
9581
10105
|
*/
|
|
9582
|
-
meta?:
|
|
10106
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
9583
10107
|
/**
|
|
9584
10108
|
* Included resources
|
|
9585
10109
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -9771,10 +10295,10 @@ export interface JsonApiEntitlementOutList {
|
|
|
9771
10295
|
links?: ListLinks;
|
|
9772
10296
|
/**
|
|
9773
10297
|
*
|
|
9774
|
-
* @type {
|
|
10298
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
9775
10299
|
* @memberof JsonApiEntitlementOutList
|
|
9776
10300
|
*/
|
|
9777
|
-
meta?:
|
|
10301
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
9778
10302
|
}
|
|
9779
10303
|
/**
|
|
9780
10304
|
*
|
|
@@ -9831,21 +10355,58 @@ export interface JsonApiExportDefinitionIn {
|
|
|
9831
10355
|
id: string;
|
|
9832
10356
|
/**
|
|
9833
10357
|
*
|
|
9834
|
-
* @type {
|
|
10358
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
9835
10359
|
* @memberof JsonApiExportDefinitionIn
|
|
9836
10360
|
*/
|
|
9837
|
-
attributes?:
|
|
10361
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
9838
10362
|
/**
|
|
9839
10363
|
*
|
|
9840
|
-
* @type {
|
|
10364
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
9841
10365
|
* @memberof JsonApiExportDefinitionIn
|
|
9842
10366
|
*/
|
|
9843
|
-
relationships?:
|
|
10367
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
9844
10368
|
}
|
|
9845
10369
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
9846
10370
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
9847
10371
|
};
|
|
9848
10372
|
export type JsonApiExportDefinitionInTypeEnum = typeof JsonApiExportDefinitionInTypeEnum[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
10373
|
+
/**
|
|
10374
|
+
*
|
|
10375
|
+
* @export
|
|
10376
|
+
* @interface JsonApiExportDefinitionInAttributes
|
|
10377
|
+
*/
|
|
10378
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
10379
|
+
/**
|
|
10380
|
+
*
|
|
10381
|
+
* @type {string}
|
|
10382
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10383
|
+
*/
|
|
10384
|
+
title?: string;
|
|
10385
|
+
/**
|
|
10386
|
+
*
|
|
10387
|
+
* @type {string}
|
|
10388
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10389
|
+
*/
|
|
10390
|
+
description?: string;
|
|
10391
|
+
/**
|
|
10392
|
+
*
|
|
10393
|
+
* @type {Array<string>}
|
|
10394
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10395
|
+
*/
|
|
10396
|
+
tags?: Array<string>;
|
|
10397
|
+
/**
|
|
10398
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
10399
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
10400
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10401
|
+
*/
|
|
10402
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
10403
|
+
/**
|
|
10404
|
+
*
|
|
10405
|
+
* @type {boolean}
|
|
10406
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
10407
|
+
*/
|
|
10408
|
+
areRelationsValid?: boolean;
|
|
10409
|
+
}
|
|
9849
10410
|
/**
|
|
9850
10411
|
*
|
|
9851
10412
|
* @export
|
|
@@ -9859,6 +10420,25 @@ export interface JsonApiExportDefinitionInDocument {
|
|
|
9859
10420
|
*/
|
|
9860
10421
|
data: JsonApiExportDefinitionIn;
|
|
9861
10422
|
}
|
|
10423
|
+
/**
|
|
10424
|
+
*
|
|
10425
|
+
* @export
|
|
10426
|
+
* @interface JsonApiExportDefinitionInRelationships
|
|
10427
|
+
*/
|
|
10428
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
10429
|
+
/**
|
|
10430
|
+
*
|
|
10431
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10432
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10433
|
+
*/
|
|
10434
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10435
|
+
/**
|
|
10436
|
+
*
|
|
10437
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
10438
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
10439
|
+
*/
|
|
10440
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
10441
|
+
}
|
|
9862
10442
|
/**
|
|
9863
10443
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
9864
10444
|
* @export
|
|
@@ -10022,10 +10602,10 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
10022
10602
|
links?: ListLinks;
|
|
10023
10603
|
/**
|
|
10024
10604
|
*
|
|
10025
|
-
* @type {
|
|
10605
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10026
10606
|
* @memberof JsonApiExportDefinitionOutList
|
|
10027
10607
|
*/
|
|
10028
|
-
meta?:
|
|
10608
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10029
10609
|
/**
|
|
10030
10610
|
* Included resources
|
|
10031
10611
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -10047,10 +10627,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10047
10627
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10048
10628
|
/**
|
|
10049
10629
|
*
|
|
10050
|
-
* @type {
|
|
10630
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
10051
10631
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
10052
10632
|
*/
|
|
10053
|
-
analyticalDashboard?:
|
|
10633
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
10054
10634
|
/**
|
|
10055
10635
|
*
|
|
10056
10636
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -10070,19 +10650,6 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10070
10650
|
*/
|
|
10071
10651
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
10072
10652
|
}
|
|
10073
|
-
/**
|
|
10074
|
-
*
|
|
10075
|
-
* @export
|
|
10076
|
-
* @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
10077
|
-
*/
|
|
10078
|
-
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
10079
|
-
/**
|
|
10080
|
-
*
|
|
10081
|
-
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
10082
|
-
* @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
10083
|
-
*/
|
|
10084
|
-
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
10085
|
-
}
|
|
10086
10653
|
/**
|
|
10087
10654
|
*
|
|
10088
10655
|
* @export
|
|
@@ -10176,58 +10743,21 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
10176
10743
|
id: string;
|
|
10177
10744
|
/**
|
|
10178
10745
|
*
|
|
10179
|
-
* @type {
|
|
10746
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10180
10747
|
* @memberof JsonApiExportDefinitionPatch
|
|
10181
10748
|
*/
|
|
10182
|
-
attributes?:
|
|
10749
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10183
10750
|
/**
|
|
10184
10751
|
*
|
|
10185
|
-
* @type {
|
|
10752
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10186
10753
|
* @memberof JsonApiExportDefinitionPatch
|
|
10187
10754
|
*/
|
|
10188
|
-
relationships?:
|
|
10755
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10189
10756
|
}
|
|
10190
10757
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
10191
10758
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
10192
10759
|
};
|
|
10193
10760
|
export type JsonApiExportDefinitionPatchTypeEnum = typeof JsonApiExportDefinitionPatchTypeEnum[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
10194
|
-
/**
|
|
10195
|
-
*
|
|
10196
|
-
* @export
|
|
10197
|
-
* @interface JsonApiExportDefinitionPatchAttributes
|
|
10198
|
-
*/
|
|
10199
|
-
export interface JsonApiExportDefinitionPatchAttributes {
|
|
10200
|
-
/**
|
|
10201
|
-
*
|
|
10202
|
-
* @type {string}
|
|
10203
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10204
|
-
*/
|
|
10205
|
-
title?: string;
|
|
10206
|
-
/**
|
|
10207
|
-
*
|
|
10208
|
-
* @type {string}
|
|
10209
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10210
|
-
*/
|
|
10211
|
-
description?: string;
|
|
10212
|
-
/**
|
|
10213
|
-
*
|
|
10214
|
-
* @type {Array<string>}
|
|
10215
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10216
|
-
*/
|
|
10217
|
-
tags?: Array<string>;
|
|
10218
|
-
/**
|
|
10219
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
10220
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
10221
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10222
|
-
*/
|
|
10223
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
10224
|
-
/**
|
|
10225
|
-
*
|
|
10226
|
-
* @type {boolean}
|
|
10227
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
10228
|
-
*/
|
|
10229
|
-
areRelationsValid?: boolean;
|
|
10230
|
-
}
|
|
10231
10761
|
/**
|
|
10232
10762
|
*
|
|
10233
10763
|
* @export
|
|
@@ -10241,25 +10771,6 @@ export interface JsonApiExportDefinitionPatchDocument {
|
|
|
10241
10771
|
*/
|
|
10242
10772
|
data: JsonApiExportDefinitionPatch;
|
|
10243
10773
|
}
|
|
10244
|
-
/**
|
|
10245
|
-
*
|
|
10246
|
-
* @export
|
|
10247
|
-
* @interface JsonApiExportDefinitionPatchRelationships
|
|
10248
|
-
*/
|
|
10249
|
-
export interface JsonApiExportDefinitionPatchRelationships {
|
|
10250
|
-
/**
|
|
10251
|
-
*
|
|
10252
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10253
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10254
|
-
*/
|
|
10255
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10256
|
-
/**
|
|
10257
|
-
*
|
|
10258
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
10259
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10260
|
-
*/
|
|
10261
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
10262
|
-
}
|
|
10263
10774
|
/**
|
|
10264
10775
|
* JSON:API representation of exportDefinition entity.
|
|
10265
10776
|
* @export
|
|
@@ -10280,16 +10791,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
10280
10791
|
id?: string;
|
|
10281
10792
|
/**
|
|
10282
10793
|
*
|
|
10283
|
-
* @type {
|
|
10794
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
10284
10795
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10285
10796
|
*/
|
|
10286
|
-
attributes?:
|
|
10797
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
10287
10798
|
/**
|
|
10288
10799
|
*
|
|
10289
|
-
* @type {
|
|
10800
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
10290
10801
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
10291
10802
|
*/
|
|
10292
|
-
relationships?:
|
|
10803
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
10293
10804
|
}
|
|
10294
10805
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
10295
10806
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -10509,10 +11020,10 @@ export interface JsonApiExportTemplateOutList {
|
|
|
10509
11020
|
links?: ListLinks;
|
|
10510
11021
|
/**
|
|
10511
11022
|
*
|
|
10512
|
-
* @type {
|
|
11023
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10513
11024
|
* @memberof JsonApiExportTemplateOutList
|
|
10514
11025
|
*/
|
|
10515
|
-
meta?:
|
|
11026
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10516
11027
|
}
|
|
10517
11028
|
/**
|
|
10518
11029
|
*
|
|
@@ -10837,10 +11348,10 @@ export interface JsonApiFactOutList {
|
|
|
10837
11348
|
links?: ListLinks;
|
|
10838
11349
|
/**
|
|
10839
11350
|
*
|
|
10840
|
-
* @type {
|
|
11351
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
10841
11352
|
* @memberof JsonApiFactOutList
|
|
10842
11353
|
*/
|
|
10843
|
-
meta?:
|
|
11354
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
10844
11355
|
/**
|
|
10845
11356
|
* Included resources
|
|
10846
11357
|
* @type {Array<JsonApiFactOutIncludes>}
|
|
@@ -10953,10 +11464,10 @@ export interface JsonApiFilterContextIn {
|
|
|
10953
11464
|
id: string;
|
|
10954
11465
|
/**
|
|
10955
11466
|
*
|
|
10956
|
-
* @type {
|
|
11467
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
10957
11468
|
* @memberof JsonApiFilterContextIn
|
|
10958
11469
|
*/
|
|
10959
|
-
attributes:
|
|
11470
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
10960
11471
|
}
|
|
10961
11472
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
10962
11473
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11024,10 +11535,10 @@ export interface JsonApiFilterContextOut {
|
|
|
11024
11535
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11025
11536
|
/**
|
|
11026
11537
|
*
|
|
11027
|
-
* @type {
|
|
11538
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11028
11539
|
* @memberof JsonApiFilterContextOut
|
|
11029
11540
|
*/
|
|
11030
|
-
attributes:
|
|
11541
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11031
11542
|
/**
|
|
11032
11543
|
*
|
|
11033
11544
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11039,43 +11550,6 @@ export declare const JsonApiFilterContextOutTypeEnum: {
|
|
|
11039
11550
|
readonly FILTER_CONTEXT: "filterContext";
|
|
11040
11551
|
};
|
|
11041
11552
|
export type JsonApiFilterContextOutTypeEnum = typeof JsonApiFilterContextOutTypeEnum[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
11042
|
-
/**
|
|
11043
|
-
*
|
|
11044
|
-
* @export
|
|
11045
|
-
* @interface JsonApiFilterContextOutAttributes
|
|
11046
|
-
*/
|
|
11047
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
11048
|
-
/**
|
|
11049
|
-
*
|
|
11050
|
-
* @type {string}
|
|
11051
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11052
|
-
*/
|
|
11053
|
-
title?: string;
|
|
11054
|
-
/**
|
|
11055
|
-
*
|
|
11056
|
-
* @type {string}
|
|
11057
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11058
|
-
*/
|
|
11059
|
-
description?: string;
|
|
11060
|
-
/**
|
|
11061
|
-
*
|
|
11062
|
-
* @type {Array<string>}
|
|
11063
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11064
|
-
*/
|
|
11065
|
-
tags?: Array<string>;
|
|
11066
|
-
/**
|
|
11067
|
-
*
|
|
11068
|
-
* @type {boolean}
|
|
11069
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11070
|
-
*/
|
|
11071
|
-
areRelationsValid?: boolean;
|
|
11072
|
-
/**
|
|
11073
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
11074
|
-
* @type {object}
|
|
11075
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
11076
|
-
*/
|
|
11077
|
-
content: object;
|
|
11078
|
-
}
|
|
11079
11553
|
/**
|
|
11080
11554
|
*
|
|
11081
11555
|
* @export
|
|
@@ -11126,10 +11600,10 @@ export interface JsonApiFilterContextOutList {
|
|
|
11126
11600
|
links?: ListLinks;
|
|
11127
11601
|
/**
|
|
11128
11602
|
*
|
|
11129
|
-
* @type {
|
|
11603
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11130
11604
|
* @memberof JsonApiFilterContextOutList
|
|
11131
11605
|
*/
|
|
11132
|
-
meta?:
|
|
11606
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11133
11607
|
/**
|
|
11134
11608
|
* Included resources
|
|
11135
11609
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -11188,10 +11662,10 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
11188
11662
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
11189
11663
|
/**
|
|
11190
11664
|
*
|
|
11191
|
-
* @type {
|
|
11665
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11192
11666
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
11193
11667
|
*/
|
|
11194
|
-
attributes:
|
|
11668
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11195
11669
|
/**
|
|
11196
11670
|
*
|
|
11197
11671
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -11271,10 +11745,10 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
11271
11745
|
id?: string;
|
|
11272
11746
|
/**
|
|
11273
11747
|
*
|
|
11274
|
-
* @type {
|
|
11748
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
11275
11749
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
11276
11750
|
*/
|
|
11277
|
-
attributes:
|
|
11751
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
11278
11752
|
}
|
|
11279
11753
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
11280
11754
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -11313,16 +11787,16 @@ export interface JsonApiFilterViewIn {
|
|
|
11313
11787
|
id: string;
|
|
11314
11788
|
/**
|
|
11315
11789
|
*
|
|
11316
|
-
* @type {
|
|
11790
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11317
11791
|
* @memberof JsonApiFilterViewIn
|
|
11318
11792
|
*/
|
|
11319
|
-
attributes:
|
|
11793
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11320
11794
|
/**
|
|
11321
11795
|
*
|
|
11322
|
-
* @type {
|
|
11796
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11323
11797
|
* @memberof JsonApiFilterViewIn
|
|
11324
11798
|
*/
|
|
11325
|
-
relationships?:
|
|
11799
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11326
11800
|
}
|
|
11327
11801
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11328
11802
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11331,94 +11805,126 @@ export type JsonApiFilterViewInTypeEnum = typeof JsonApiFilterViewInTypeEnum[key
|
|
|
11331
11805
|
/**
|
|
11332
11806
|
*
|
|
11333
11807
|
* @export
|
|
11334
|
-
* @interface
|
|
11335
|
-
*/
|
|
11336
|
-
export interface JsonApiFilterViewInDocument {
|
|
11337
|
-
/**
|
|
11338
|
-
*
|
|
11339
|
-
* @type {JsonApiFilterViewIn}
|
|
11340
|
-
* @memberof JsonApiFilterViewInDocument
|
|
11341
|
-
*/
|
|
11342
|
-
data: JsonApiFilterViewIn;
|
|
11343
|
-
}
|
|
11344
|
-
/**
|
|
11345
|
-
* JSON:API representation of filterView entity.
|
|
11346
|
-
* @export
|
|
11347
|
-
* @interface JsonApiFilterViewOut
|
|
11348
|
-
*/
|
|
11349
|
-
export interface JsonApiFilterViewOut {
|
|
11350
|
-
/**
|
|
11351
|
-
* Object type
|
|
11352
|
-
* @type {string}
|
|
11353
|
-
* @memberof JsonApiFilterViewOut
|
|
11354
|
-
*/
|
|
11355
|
-
type: JsonApiFilterViewOutTypeEnum;
|
|
11356
|
-
/**
|
|
11357
|
-
* API identifier of an object
|
|
11358
|
-
* @type {string}
|
|
11359
|
-
* @memberof JsonApiFilterViewOut
|
|
11360
|
-
*/
|
|
11361
|
-
id: string;
|
|
11362
|
-
/**
|
|
11363
|
-
*
|
|
11364
|
-
* @type {JsonApiFilterViewOutAttributes}
|
|
11365
|
-
* @memberof JsonApiFilterViewOut
|
|
11366
|
-
*/
|
|
11367
|
-
attributes: JsonApiFilterViewOutAttributes;
|
|
11368
|
-
/**
|
|
11369
|
-
*
|
|
11370
|
-
* @type {JsonApiFilterViewOutRelationships}
|
|
11371
|
-
* @memberof JsonApiFilterViewOut
|
|
11372
|
-
*/
|
|
11373
|
-
relationships?: JsonApiFilterViewOutRelationships;
|
|
11374
|
-
}
|
|
11375
|
-
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11376
|
-
readonly FILTER_VIEW: "filterView";
|
|
11377
|
-
};
|
|
11378
|
-
export type JsonApiFilterViewOutTypeEnum = typeof JsonApiFilterViewOutTypeEnum[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
11379
|
-
/**
|
|
11380
|
-
*
|
|
11381
|
-
* @export
|
|
11382
|
-
* @interface JsonApiFilterViewOutAttributes
|
|
11808
|
+
* @interface JsonApiFilterViewInAttributes
|
|
11383
11809
|
*/
|
|
11384
|
-
export interface
|
|
11810
|
+
export interface JsonApiFilterViewInAttributes {
|
|
11385
11811
|
/**
|
|
11386
11812
|
*
|
|
11387
11813
|
* @type {string}
|
|
11388
|
-
* @memberof
|
|
11814
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11389
11815
|
*/
|
|
11390
11816
|
title: string;
|
|
11391
11817
|
/**
|
|
11392
11818
|
*
|
|
11393
11819
|
* @type {string}
|
|
11394
|
-
* @memberof
|
|
11820
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11395
11821
|
*/
|
|
11396
11822
|
description?: string;
|
|
11397
11823
|
/**
|
|
11398
11824
|
*
|
|
11399
11825
|
* @type {Array<string>}
|
|
11400
|
-
* @memberof
|
|
11826
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11401
11827
|
*/
|
|
11402
11828
|
tags?: Array<string>;
|
|
11403
11829
|
/**
|
|
11404
11830
|
*
|
|
11405
11831
|
* @type {boolean}
|
|
11406
|
-
* @memberof
|
|
11832
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11407
11833
|
*/
|
|
11408
11834
|
areRelationsValid?: boolean;
|
|
11409
11835
|
/**
|
|
11410
11836
|
* Indicator whether the filter view should by applied by default.
|
|
11411
11837
|
* @type {boolean}
|
|
11412
|
-
* @memberof
|
|
11838
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11413
11839
|
*/
|
|
11414
11840
|
isDefault?: boolean;
|
|
11415
11841
|
/**
|
|
11416
11842
|
* The respective filter context.
|
|
11417
11843
|
* @type {object}
|
|
11418
|
-
* @memberof
|
|
11844
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11419
11845
|
*/
|
|
11420
11846
|
content: object;
|
|
11421
11847
|
}
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @export
|
|
11851
|
+
* @interface JsonApiFilterViewInDocument
|
|
11852
|
+
*/
|
|
11853
|
+
export interface JsonApiFilterViewInDocument {
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {JsonApiFilterViewIn}
|
|
11857
|
+
* @memberof JsonApiFilterViewInDocument
|
|
11858
|
+
*/
|
|
11859
|
+
data: JsonApiFilterViewIn;
|
|
11860
|
+
}
|
|
11861
|
+
/**
|
|
11862
|
+
*
|
|
11863
|
+
* @export
|
|
11864
|
+
* @interface JsonApiFilterViewInRelationships
|
|
11865
|
+
*/
|
|
11866
|
+
export interface JsonApiFilterViewInRelationships {
|
|
11867
|
+
/**
|
|
11868
|
+
*
|
|
11869
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
11870
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11871
|
+
*/
|
|
11872
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
11876
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11877
|
+
*/
|
|
11878
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
11879
|
+
}
|
|
11880
|
+
/**
|
|
11881
|
+
*
|
|
11882
|
+
* @export
|
|
11883
|
+
* @interface JsonApiFilterViewInRelationshipsUser
|
|
11884
|
+
*/
|
|
11885
|
+
export interface JsonApiFilterViewInRelationshipsUser {
|
|
11886
|
+
/**
|
|
11887
|
+
*
|
|
11888
|
+
* @type {JsonApiUserToOneLinkage}
|
|
11889
|
+
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
11890
|
+
*/
|
|
11891
|
+
data: JsonApiUserToOneLinkage | null;
|
|
11892
|
+
}
|
|
11893
|
+
/**
|
|
11894
|
+
* JSON:API representation of filterView entity.
|
|
11895
|
+
* @export
|
|
11896
|
+
* @interface JsonApiFilterViewOut
|
|
11897
|
+
*/
|
|
11898
|
+
export interface JsonApiFilterViewOut {
|
|
11899
|
+
/**
|
|
11900
|
+
* Object type
|
|
11901
|
+
* @type {string}
|
|
11902
|
+
* @memberof JsonApiFilterViewOut
|
|
11903
|
+
*/
|
|
11904
|
+
type: JsonApiFilterViewOutTypeEnum;
|
|
11905
|
+
/**
|
|
11906
|
+
* API identifier of an object
|
|
11907
|
+
* @type {string}
|
|
11908
|
+
* @memberof JsonApiFilterViewOut
|
|
11909
|
+
*/
|
|
11910
|
+
id: string;
|
|
11911
|
+
/**
|
|
11912
|
+
*
|
|
11913
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11914
|
+
* @memberof JsonApiFilterViewOut
|
|
11915
|
+
*/
|
|
11916
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11917
|
+
/**
|
|
11918
|
+
*
|
|
11919
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11920
|
+
* @memberof JsonApiFilterViewOut
|
|
11921
|
+
*/
|
|
11922
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11923
|
+
}
|
|
11924
|
+
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11925
|
+
readonly FILTER_VIEW: "filterView";
|
|
11926
|
+
};
|
|
11927
|
+
export type JsonApiFilterViewOutTypeEnum = typeof JsonApiFilterViewOutTypeEnum[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
11422
11928
|
/**
|
|
11423
11929
|
*
|
|
11424
11930
|
* @export
|
|
@@ -11469,10 +11975,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
11469
11975
|
links?: ListLinks;
|
|
11470
11976
|
/**
|
|
11471
11977
|
*
|
|
11472
|
-
* @type {
|
|
11978
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11473
11979
|
* @memberof JsonApiFilterViewOutList
|
|
11474
11980
|
*/
|
|
11475
|
-
meta?:
|
|
11981
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11476
11982
|
/**
|
|
11477
11983
|
* Included resources
|
|
11478
11984
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -11480,25 +11986,6 @@ export interface JsonApiFilterViewOutList {
|
|
|
11480
11986
|
*/
|
|
11481
11987
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11482
11988
|
}
|
|
11483
|
-
/**
|
|
11484
|
-
*
|
|
11485
|
-
* @export
|
|
11486
|
-
* @interface JsonApiFilterViewOutRelationships
|
|
11487
|
-
*/
|
|
11488
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
11489
|
-
/**
|
|
11490
|
-
*
|
|
11491
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
11492
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11493
|
-
*/
|
|
11494
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
11495
|
-
/**
|
|
11496
|
-
*
|
|
11497
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
11498
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11499
|
-
*/
|
|
11500
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
11501
|
-
}
|
|
11502
11989
|
/**
|
|
11503
11990
|
*
|
|
11504
11991
|
* @export
|
|
@@ -11519,16 +12006,16 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11519
12006
|
id: string;
|
|
11520
12007
|
/**
|
|
11521
12008
|
*
|
|
11522
|
-
* @type {
|
|
12009
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11523
12010
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11524
12011
|
*/
|
|
11525
|
-
attributes:
|
|
12012
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11526
12013
|
/**
|
|
11527
12014
|
*
|
|
11528
|
-
* @type {
|
|
12015
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11529
12016
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11530
12017
|
*/
|
|
11531
|
-
relationships?:
|
|
12018
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11532
12019
|
/**
|
|
11533
12020
|
*
|
|
11534
12021
|
* @type {ObjectLinks}
|
|
@@ -11566,10 +12053,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11566
12053
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11567
12054
|
/**
|
|
11568
12055
|
*
|
|
11569
|
-
* @type {
|
|
12056
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11570
12057
|
* @memberof JsonApiFilterViewPatch
|
|
11571
12058
|
*/
|
|
11572
|
-
relationships?:
|
|
12059
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11573
12060
|
}
|
|
11574
12061
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11575
12062
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11651,15 +12138,98 @@ export interface JsonApiIdentityProviderIn {
|
|
|
11651
12138
|
id: string;
|
|
11652
12139
|
/**
|
|
11653
12140
|
*
|
|
11654
|
-
* @type {
|
|
12141
|
+
* @type {JsonApiIdentityProviderInAttributes}
|
|
11655
12142
|
* @memberof JsonApiIdentityProviderIn
|
|
11656
12143
|
*/
|
|
11657
|
-
attributes?:
|
|
12144
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
11658
12145
|
}
|
|
11659
12146
|
export declare const JsonApiIdentityProviderInTypeEnum: {
|
|
11660
12147
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
11661
12148
|
};
|
|
11662
12149
|
export type JsonApiIdentityProviderInTypeEnum = typeof JsonApiIdentityProviderInTypeEnum[keyof typeof JsonApiIdentityProviderInTypeEnum];
|
|
12150
|
+
/**
|
|
12151
|
+
*
|
|
12152
|
+
* @export
|
|
12153
|
+
* @interface JsonApiIdentityProviderInAttributes
|
|
12154
|
+
*/
|
|
12155
|
+
export interface JsonApiIdentityProviderInAttributes {
|
|
12156
|
+
/**
|
|
12157
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
12158
|
+
* @type {Array<string>}
|
|
12159
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12160
|
+
*/
|
|
12161
|
+
identifiers?: Array<string>;
|
|
12162
|
+
/**
|
|
12163
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
12164
|
+
* @type {{ [key: string]: string; }}
|
|
12165
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12166
|
+
*/
|
|
12167
|
+
customClaimMapping?: {
|
|
12168
|
+
[key: string]: string;
|
|
12169
|
+
};
|
|
12170
|
+
/**
|
|
12171
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
12172
|
+
* @type {string}
|
|
12173
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12174
|
+
*/
|
|
12175
|
+
samlMetadata?: string;
|
|
12176
|
+
/**
|
|
12177
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12178
|
+
* @type {string}
|
|
12179
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12180
|
+
*/
|
|
12181
|
+
oauthClientId?: string;
|
|
12182
|
+
/**
|
|
12183
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12184
|
+
* @type {string}
|
|
12185
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12186
|
+
*/
|
|
12187
|
+
oauthClientSecret?: string;
|
|
12188
|
+
/**
|
|
12189
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
12190
|
+
* @type {string}
|
|
12191
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12192
|
+
*/
|
|
12193
|
+
oauthIssuerLocation?: string;
|
|
12194
|
+
/**
|
|
12195
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
12196
|
+
* @type {string}
|
|
12197
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12198
|
+
*/
|
|
12199
|
+
oauthIssuerId?: string;
|
|
12200
|
+
/**
|
|
12201
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
12202
|
+
* @type {string}
|
|
12203
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12204
|
+
*/
|
|
12205
|
+
oauthSubjectIdClaim?: string;
|
|
12206
|
+
/**
|
|
12207
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
12208
|
+
* @type {{ [key: string]: string; }}
|
|
12209
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12210
|
+
*/
|
|
12211
|
+
oauthCustomAuthAttributes?: {
|
|
12212
|
+
[key: string]: string;
|
|
12213
|
+
};
|
|
12214
|
+
/**
|
|
12215
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
12216
|
+
* @type {Array<string>}
|
|
12217
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12218
|
+
*/
|
|
12219
|
+
oauthCustomScopes?: Array<string> | null;
|
|
12220
|
+
/**
|
|
12221
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
12222
|
+
* @type {string}
|
|
12223
|
+
* @memberof JsonApiIdentityProviderInAttributes
|
|
12224
|
+
*/
|
|
12225
|
+
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
12226
|
+
}
|
|
12227
|
+
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
12228
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
12229
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
12230
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
12231
|
+
};
|
|
12232
|
+
export type JsonApiIdentityProviderInAttributesIdpTypeEnum = typeof JsonApiIdentityProviderInAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
11663
12233
|
/**
|
|
11664
12234
|
*
|
|
11665
12235
|
* @export
|
|
@@ -11835,10 +12405,10 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
11835
12405
|
links?: ListLinks;
|
|
11836
12406
|
/**
|
|
11837
12407
|
*
|
|
11838
|
-
* @type {
|
|
12408
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
11839
12409
|
* @memberof JsonApiIdentityProviderOutList
|
|
11840
12410
|
*/
|
|
11841
|
-
meta?:
|
|
12411
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
11842
12412
|
}
|
|
11843
12413
|
/**
|
|
11844
12414
|
*
|
|
@@ -11895,98 +12465,15 @@ export interface JsonApiIdentityProviderPatch {
|
|
|
11895
12465
|
id: string;
|
|
11896
12466
|
/**
|
|
11897
12467
|
*
|
|
11898
|
-
* @type {
|
|
12468
|
+
* @type {JsonApiIdentityProviderInAttributes}
|
|
11899
12469
|
* @memberof JsonApiIdentityProviderPatch
|
|
11900
12470
|
*/
|
|
11901
|
-
attributes?:
|
|
12471
|
+
attributes?: JsonApiIdentityProviderInAttributes;
|
|
11902
12472
|
}
|
|
11903
12473
|
export declare const JsonApiIdentityProviderPatchTypeEnum: {
|
|
11904
12474
|
readonly IDENTITY_PROVIDER: "identityProvider";
|
|
11905
12475
|
};
|
|
11906
12476
|
export type JsonApiIdentityProviderPatchTypeEnum = typeof JsonApiIdentityProviderPatchTypeEnum[keyof typeof JsonApiIdentityProviderPatchTypeEnum];
|
|
11907
|
-
/**
|
|
11908
|
-
*
|
|
11909
|
-
* @export
|
|
11910
|
-
* @interface JsonApiIdentityProviderPatchAttributes
|
|
11911
|
-
*/
|
|
11912
|
-
export interface JsonApiIdentityProviderPatchAttributes {
|
|
11913
|
-
/**
|
|
11914
|
-
* 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.
|
|
11915
|
-
* @type {Array<string>}
|
|
11916
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11917
|
-
*/
|
|
11918
|
-
identifiers?: Array<string>;
|
|
11919
|
-
/**
|
|
11920
|
-
* 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.
|
|
11921
|
-
* @type {{ [key: string]: string; }}
|
|
11922
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11923
|
-
*/
|
|
11924
|
-
customClaimMapping?: {
|
|
11925
|
-
[key: string]: string;
|
|
11926
|
-
};
|
|
11927
|
-
/**
|
|
11928
|
-
* 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.
|
|
11929
|
-
* @type {string}
|
|
11930
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11931
|
-
*/
|
|
11932
|
-
samlMetadata?: string;
|
|
11933
|
-
/**
|
|
11934
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
11935
|
-
* @type {string}
|
|
11936
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11937
|
-
*/
|
|
11938
|
-
oauthClientId?: string;
|
|
11939
|
-
/**
|
|
11940
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
11941
|
-
* @type {string}
|
|
11942
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11943
|
-
*/
|
|
11944
|
-
oauthClientSecret?: string;
|
|
11945
|
-
/**
|
|
11946
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
11947
|
-
* @type {string}
|
|
11948
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11949
|
-
*/
|
|
11950
|
-
oauthIssuerLocation?: string;
|
|
11951
|
-
/**
|
|
11952
|
-
* 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.
|
|
11953
|
-
* @type {string}
|
|
11954
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11955
|
-
*/
|
|
11956
|
-
oauthIssuerId?: string;
|
|
11957
|
-
/**
|
|
11958
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
11959
|
-
* @type {string}
|
|
11960
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11961
|
-
*/
|
|
11962
|
-
oauthSubjectIdClaim?: string;
|
|
11963
|
-
/**
|
|
11964
|
-
* 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.
|
|
11965
|
-
* @type {{ [key: string]: string; }}
|
|
11966
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11967
|
-
*/
|
|
11968
|
-
oauthCustomAuthAttributes?: {
|
|
11969
|
-
[key: string]: string;
|
|
11970
|
-
};
|
|
11971
|
-
/**
|
|
11972
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
11973
|
-
* @type {Array<string>}
|
|
11974
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11975
|
-
*/
|
|
11976
|
-
oauthCustomScopes?: Array<string> | null;
|
|
11977
|
-
/**
|
|
11978
|
-
* 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.
|
|
11979
|
-
* @type {string}
|
|
11980
|
-
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
11981
|
-
*/
|
|
11982
|
-
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
11983
|
-
}
|
|
11984
|
-
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
11985
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
11986
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
11987
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
11988
|
-
};
|
|
11989
|
-
export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
11990
12477
|
/**
|
|
11991
12478
|
*
|
|
11992
12479
|
* @export
|
|
@@ -12129,10 +12616,10 @@ export interface JsonApiJwkOutList {
|
|
|
12129
12616
|
links?: ListLinks;
|
|
12130
12617
|
/**
|
|
12131
12618
|
*
|
|
12132
|
-
* @type {
|
|
12619
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12133
12620
|
* @memberof JsonApiJwkOutList
|
|
12134
12621
|
*/
|
|
12135
|
-
meta?:
|
|
12622
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12136
12623
|
}
|
|
12137
12624
|
/**
|
|
12138
12625
|
*
|
|
@@ -12394,10 +12881,10 @@ export interface JsonApiLabelOutList {
|
|
|
12394
12881
|
links?: ListLinks;
|
|
12395
12882
|
/**
|
|
12396
12883
|
*
|
|
12397
|
-
* @type {
|
|
12884
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12398
12885
|
* @memberof JsonApiLabelOutList
|
|
12399
12886
|
*/
|
|
12400
|
-
meta?:
|
|
12887
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12401
12888
|
/**
|
|
12402
12889
|
* Included resources
|
|
12403
12890
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -12558,6 +13045,7 @@ export interface JsonApiLlmEndpointInAttributes {
|
|
|
12558
13045
|
}
|
|
12559
13046
|
export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
|
|
12560
13047
|
readonly OPENAI: "OPENAI";
|
|
13048
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12561
13049
|
};
|
|
12562
13050
|
export type JsonApiLlmEndpointInAttributesProviderEnum = typeof JsonApiLlmEndpointInAttributesProviderEnum[keyof typeof JsonApiLlmEndpointInAttributesProviderEnum];
|
|
12563
13051
|
/**
|
|
@@ -12641,6 +13129,7 @@ export interface JsonApiLlmEndpointOutAttributes {
|
|
|
12641
13129
|
}
|
|
12642
13130
|
export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
|
|
12643
13131
|
readonly OPENAI: "OPENAI";
|
|
13132
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12644
13133
|
};
|
|
12645
13134
|
export type JsonApiLlmEndpointOutAttributesProviderEnum = typeof JsonApiLlmEndpointOutAttributesProviderEnum[keyof typeof JsonApiLlmEndpointOutAttributesProviderEnum];
|
|
12646
13135
|
/**
|
|
@@ -12682,10 +13171,10 @@ export interface JsonApiLlmEndpointOutList {
|
|
|
12682
13171
|
links?: ListLinks;
|
|
12683
13172
|
/**
|
|
12684
13173
|
*
|
|
12685
|
-
* @type {
|
|
13174
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
12686
13175
|
* @memberof JsonApiLlmEndpointOutList
|
|
12687
13176
|
*/
|
|
12688
|
-
meta?:
|
|
13177
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
12689
13178
|
}
|
|
12690
13179
|
/**
|
|
12691
13180
|
*
|
|
@@ -12796,6 +13285,7 @@ export interface JsonApiLlmEndpointPatchAttributes {
|
|
|
12796
13285
|
}
|
|
12797
13286
|
export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
|
|
12798
13287
|
readonly OPENAI: "OPENAI";
|
|
13288
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12799
13289
|
};
|
|
12800
13290
|
export type JsonApiLlmEndpointPatchAttributesProviderEnum = typeof JsonApiLlmEndpointPatchAttributesProviderEnum[keyof typeof JsonApiLlmEndpointPatchAttributesProviderEnum];
|
|
12801
13291
|
/**
|
|
@@ -12831,15 +13321,52 @@ export interface JsonApiMetricIn {
|
|
|
12831
13321
|
id: string;
|
|
12832
13322
|
/**
|
|
12833
13323
|
*
|
|
12834
|
-
* @type {
|
|
13324
|
+
* @type {JsonApiMetricInAttributes}
|
|
12835
13325
|
* @memberof JsonApiMetricIn
|
|
12836
13326
|
*/
|
|
12837
|
-
attributes:
|
|
13327
|
+
attributes: JsonApiMetricInAttributes;
|
|
12838
13328
|
}
|
|
12839
13329
|
export declare const JsonApiMetricInTypeEnum: {
|
|
12840
13330
|
readonly METRIC: "metric";
|
|
12841
13331
|
};
|
|
12842
13332
|
export type JsonApiMetricInTypeEnum = typeof JsonApiMetricInTypeEnum[keyof typeof JsonApiMetricInTypeEnum];
|
|
13333
|
+
/**
|
|
13334
|
+
*
|
|
13335
|
+
* @export
|
|
13336
|
+
* @interface JsonApiMetricInAttributes
|
|
13337
|
+
*/
|
|
13338
|
+
export interface JsonApiMetricInAttributes {
|
|
13339
|
+
/**
|
|
13340
|
+
*
|
|
13341
|
+
* @type {string}
|
|
13342
|
+
* @memberof JsonApiMetricInAttributes
|
|
13343
|
+
*/
|
|
13344
|
+
title?: string;
|
|
13345
|
+
/**
|
|
13346
|
+
*
|
|
13347
|
+
* @type {string}
|
|
13348
|
+
* @memberof JsonApiMetricInAttributes
|
|
13349
|
+
*/
|
|
13350
|
+
description?: string;
|
|
13351
|
+
/**
|
|
13352
|
+
*
|
|
13353
|
+
* @type {Array<string>}
|
|
13354
|
+
* @memberof JsonApiMetricInAttributes
|
|
13355
|
+
*/
|
|
13356
|
+
tags?: Array<string>;
|
|
13357
|
+
/**
|
|
13358
|
+
*
|
|
13359
|
+
* @type {boolean}
|
|
13360
|
+
* @memberof JsonApiMetricInAttributes
|
|
13361
|
+
*/
|
|
13362
|
+
areRelationsValid?: boolean;
|
|
13363
|
+
/**
|
|
13364
|
+
*
|
|
13365
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
13366
|
+
* @memberof JsonApiMetricInAttributes
|
|
13367
|
+
*/
|
|
13368
|
+
content: JsonApiMetricOutAttributesContent;
|
|
13369
|
+
}
|
|
12843
13370
|
/**
|
|
12844
13371
|
*
|
|
12845
13372
|
* @export
|
|
@@ -13035,10 +13562,10 @@ export interface JsonApiMetricOutList {
|
|
|
13035
13562
|
links?: ListLinks;
|
|
13036
13563
|
/**
|
|
13037
13564
|
*
|
|
13038
|
-
* @type {
|
|
13565
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13039
13566
|
* @memberof JsonApiMetricOutList
|
|
13040
13567
|
*/
|
|
13041
|
-
meta?:
|
|
13568
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13042
13569
|
/**
|
|
13043
13570
|
* Included resources
|
|
13044
13571
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -13192,52 +13719,15 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
13192
13719
|
id?: string;
|
|
13193
13720
|
/**
|
|
13194
13721
|
*
|
|
13195
|
-
* @type {
|
|
13722
|
+
* @type {JsonApiMetricInAttributes}
|
|
13196
13723
|
* @memberof JsonApiMetricPostOptionalId
|
|
13197
13724
|
*/
|
|
13198
|
-
attributes:
|
|
13725
|
+
attributes: JsonApiMetricInAttributes;
|
|
13199
13726
|
}
|
|
13200
13727
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
13201
13728
|
readonly METRIC: "metric";
|
|
13202
13729
|
};
|
|
13203
13730
|
export type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
13204
|
-
/**
|
|
13205
|
-
*
|
|
13206
|
-
* @export
|
|
13207
|
-
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
13208
|
-
*/
|
|
13209
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
13210
|
-
/**
|
|
13211
|
-
*
|
|
13212
|
-
* @type {string}
|
|
13213
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13214
|
-
*/
|
|
13215
|
-
title?: string;
|
|
13216
|
-
/**
|
|
13217
|
-
*
|
|
13218
|
-
* @type {string}
|
|
13219
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13220
|
-
*/
|
|
13221
|
-
description?: string;
|
|
13222
|
-
/**
|
|
13223
|
-
*
|
|
13224
|
-
* @type {Array<string>}
|
|
13225
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13226
|
-
*/
|
|
13227
|
-
tags?: Array<string>;
|
|
13228
|
-
/**
|
|
13229
|
-
*
|
|
13230
|
-
* @type {boolean}
|
|
13231
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13232
|
-
*/
|
|
13233
|
-
areRelationsValid?: boolean;
|
|
13234
|
-
/**
|
|
13235
|
-
*
|
|
13236
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
13237
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
13238
|
-
*/
|
|
13239
|
-
content: JsonApiMetricOutAttributesContent;
|
|
13240
|
-
}
|
|
13241
13731
|
/**
|
|
13242
13732
|
*
|
|
13243
13733
|
* @export
|
|
@@ -13363,10 +13853,10 @@ export interface JsonApiNotificationChannelIdentifierOutList {
|
|
|
13363
13853
|
links?: ListLinks;
|
|
13364
13854
|
/**
|
|
13365
13855
|
*
|
|
13366
|
-
* @type {
|
|
13856
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13367
13857
|
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
13368
13858
|
*/
|
|
13369
|
-
meta?:
|
|
13859
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13370
13860
|
}
|
|
13371
13861
|
/**
|
|
13372
13862
|
*
|
|
@@ -13423,10 +13913,10 @@ export interface JsonApiNotificationChannelIn {
|
|
|
13423
13913
|
id: string;
|
|
13424
13914
|
/**
|
|
13425
13915
|
*
|
|
13426
|
-
* @type {
|
|
13916
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
13427
13917
|
* @memberof JsonApiNotificationChannelIn
|
|
13428
13918
|
*/
|
|
13429
|
-
attributes?:
|
|
13919
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
13430
13920
|
}
|
|
13431
13921
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
13432
13922
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13621,10 +14111,10 @@ export interface JsonApiNotificationChannelOutList {
|
|
|
13621
14111
|
links?: ListLinks;
|
|
13622
14112
|
/**
|
|
13623
14113
|
*
|
|
13624
|
-
* @type {
|
|
14114
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
13625
14115
|
* @memberof JsonApiNotificationChannelOutList
|
|
13626
14116
|
*/
|
|
13627
|
-
meta?:
|
|
14117
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
13628
14118
|
}
|
|
13629
14119
|
/**
|
|
13630
14120
|
*
|
|
@@ -13681,10 +14171,10 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
13681
14171
|
id: string;
|
|
13682
14172
|
/**
|
|
13683
14173
|
*
|
|
13684
|
-
* @type {
|
|
14174
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
13685
14175
|
* @memberof JsonApiNotificationChannelPatch
|
|
13686
14176
|
*/
|
|
13687
|
-
attributes?:
|
|
14177
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
13688
14178
|
}
|
|
13689
14179
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
13690
14180
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13693,117 +14183,117 @@ export type JsonApiNotificationChannelPatchTypeEnum = typeof JsonApiNotification
|
|
|
13693
14183
|
/**
|
|
13694
14184
|
*
|
|
13695
14185
|
* @export
|
|
13696
|
-
* @interface
|
|
14186
|
+
* @interface JsonApiNotificationChannelPatchDocument
|
|
13697
14187
|
*/
|
|
13698
|
-
export interface
|
|
14188
|
+
export interface JsonApiNotificationChannelPatchDocument {
|
|
13699
14189
|
/**
|
|
13700
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
|
|
13701
14204
|
* @type {string}
|
|
13702
|
-
* @memberof
|
|
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
|
|
14229
|
+
*/
|
|
14230
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
14231
|
+
/**
|
|
14232
|
+
*
|
|
14233
|
+
* @type {string}
|
|
14234
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13703
14235
|
*/
|
|
13704
14236
|
name?: string | null;
|
|
13705
14237
|
/**
|
|
13706
14238
|
*
|
|
13707
14239
|
* @type {string}
|
|
13708
|
-
* @memberof
|
|
14240
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13709
14241
|
*/
|
|
13710
14242
|
description?: string | null;
|
|
13711
14243
|
/**
|
|
13712
14244
|
* The destination where the notifications are to be sent.
|
|
13713
14245
|
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
13714
|
-
* @memberof
|
|
14246
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13715
14247
|
*/
|
|
13716
14248
|
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
13717
14249
|
/**
|
|
13718
14250
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
13719
14251
|
* @type {string}
|
|
13720
|
-
* @memberof
|
|
14252
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13721
14253
|
*/
|
|
13722
14254
|
customDashboardUrl?: string;
|
|
13723
14255
|
/**
|
|
13724
14256
|
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
13725
14257
|
* @type {string}
|
|
13726
|
-
* @memberof
|
|
14258
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13727
14259
|
*/
|
|
13728
|
-
dashboardLinkVisibility?:
|
|
14260
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
13729
14261
|
/**
|
|
13730
14262
|
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
13731
14263
|
* @type {string}
|
|
13732
|
-
* @memberof
|
|
14264
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13733
14265
|
*/
|
|
13734
14266
|
notificationSource?: string;
|
|
13735
14267
|
/**
|
|
13736
14268
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
13737
14269
|
* @type {string}
|
|
13738
|
-
* @memberof
|
|
14270
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13739
14271
|
*/
|
|
13740
|
-
allowedRecipients?:
|
|
14272
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
13741
14273
|
/**
|
|
13742
14274
|
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
13743
14275
|
* @type {string}
|
|
13744
|
-
* @memberof
|
|
14276
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13745
14277
|
*/
|
|
13746
|
-
inPlatformNotification?:
|
|
14278
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
13747
14279
|
}
|
|
13748
|
-
export declare const
|
|
14280
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
13749
14281
|
readonly HIDDEN: "HIDDEN";
|
|
13750
14282
|
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
13751
14283
|
readonly ALL: "ALL";
|
|
13752
14284
|
};
|
|
13753
|
-
export type
|
|
13754
|
-
export declare const
|
|
14285
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
14286
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
13755
14287
|
readonly CREATOR: "CREATOR";
|
|
13756
14288
|
readonly INTERNAL: "INTERNAL";
|
|
13757
14289
|
readonly EXTERNAL: "EXTERNAL";
|
|
13758
14290
|
};
|
|
13759
|
-
export type
|
|
13760
|
-
export declare const
|
|
14291
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
14292
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
13761
14293
|
readonly DISABLED: "DISABLED";
|
|
13762
14294
|
readonly ENABLED: "ENABLED";
|
|
13763
14295
|
};
|
|
13764
|
-
export type
|
|
13765
|
-
/**
|
|
13766
|
-
*
|
|
13767
|
-
* @export
|
|
13768
|
-
* @interface JsonApiNotificationChannelPatchDocument
|
|
13769
|
-
*/
|
|
13770
|
-
export interface JsonApiNotificationChannelPatchDocument {
|
|
13771
|
-
/**
|
|
13772
|
-
*
|
|
13773
|
-
* @type {JsonApiNotificationChannelPatch}
|
|
13774
|
-
* @memberof JsonApiNotificationChannelPatchDocument
|
|
13775
|
-
*/
|
|
13776
|
-
data: JsonApiNotificationChannelPatch;
|
|
13777
|
-
}
|
|
13778
|
-
/**
|
|
13779
|
-
* JSON:API representation of notificationChannel entity.
|
|
13780
|
-
* @export
|
|
13781
|
-
* @interface JsonApiNotificationChannelPostOptionalId
|
|
13782
|
-
*/
|
|
13783
|
-
export interface JsonApiNotificationChannelPostOptionalId {
|
|
13784
|
-
/**
|
|
13785
|
-
* Object type
|
|
13786
|
-
* @type {string}
|
|
13787
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13788
|
-
*/
|
|
13789
|
-
type: JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
13790
|
-
/**
|
|
13791
|
-
* API identifier of an object
|
|
13792
|
-
* @type {string}
|
|
13793
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13794
|
-
*/
|
|
13795
|
-
id?: string;
|
|
13796
|
-
/**
|
|
13797
|
-
*
|
|
13798
|
-
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
13799
|
-
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13800
|
-
*/
|
|
13801
|
-
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
13802
|
-
}
|
|
13803
|
-
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
13804
|
-
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
13805
|
-
};
|
|
13806
|
-
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = typeof JsonApiNotificationChannelPostOptionalIdTypeEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
14296
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
13807
14297
|
/**
|
|
13808
14298
|
*
|
|
13809
14299
|
* @export
|
|
@@ -14074,16 +14564,16 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
14074
14564
|
export interface JsonApiOrganizationOutRelationships {
|
|
14075
14565
|
/**
|
|
14076
14566
|
*
|
|
14077
|
-
* @type {
|
|
14567
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
14078
14568
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14079
14569
|
*/
|
|
14080
|
-
bootstrapUser?:
|
|
14570
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
14081
14571
|
/**
|
|
14082
14572
|
*
|
|
14083
|
-
* @type {
|
|
14573
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14084
14574
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14085
14575
|
*/
|
|
14086
|
-
bootstrapUserGroup?:
|
|
14576
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14087
14577
|
/**
|
|
14088
14578
|
*
|
|
14089
14579
|
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
@@ -14091,32 +14581,6 @@ export interface JsonApiOrganizationOutRelationships {
|
|
|
14091
14581
|
*/
|
|
14092
14582
|
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
14093
14583
|
}
|
|
14094
|
-
/**
|
|
14095
|
-
*
|
|
14096
|
-
* @export
|
|
14097
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
14098
|
-
*/
|
|
14099
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
14100
|
-
/**
|
|
14101
|
-
*
|
|
14102
|
-
* @type {JsonApiUserToOneLinkage}
|
|
14103
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
14104
|
-
*/
|
|
14105
|
-
data: JsonApiUserToOneLinkage | null;
|
|
14106
|
-
}
|
|
14107
|
-
/**
|
|
14108
|
-
*
|
|
14109
|
-
* @export
|
|
14110
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
14111
|
-
*/
|
|
14112
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
14113
|
-
/**
|
|
14114
|
-
*
|
|
14115
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
14116
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
14117
|
-
*/
|
|
14118
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
14119
|
-
}
|
|
14120
14584
|
/**
|
|
14121
14585
|
* JSON:API representation of patching organization entity.
|
|
14122
14586
|
* @export
|
|
@@ -14293,10 +14757,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
14293
14757
|
id: string;
|
|
14294
14758
|
/**
|
|
14295
14759
|
*
|
|
14296
|
-
* @type {
|
|
14760
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14297
14761
|
* @memberof JsonApiOrganizationSettingIn
|
|
14298
14762
|
*/
|
|
14299
|
-
attributes?:
|
|
14763
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14300
14764
|
}
|
|
14301
14765
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
14302
14766
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14335,15 +14799,62 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
14335
14799
|
id: string;
|
|
14336
14800
|
/**
|
|
14337
14801
|
*
|
|
14338
|
-
* @type {
|
|
14802
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14339
14803
|
* @memberof JsonApiOrganizationSettingOut
|
|
14340
14804
|
*/
|
|
14341
|
-
attributes?:
|
|
14805
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14342
14806
|
}
|
|
14343
14807
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14344
14808
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
14345
14809
|
};
|
|
14346
14810
|
export type JsonApiOrganizationSettingOutTypeEnum = typeof JsonApiOrganizationSettingOutTypeEnum[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
14811
|
+
/**
|
|
14812
|
+
*
|
|
14813
|
+
* @export
|
|
14814
|
+
* @interface JsonApiOrganizationSettingOutAttributes
|
|
14815
|
+
*/
|
|
14816
|
+
export interface JsonApiOrganizationSettingOutAttributes {
|
|
14817
|
+
/**
|
|
14818
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
14819
|
+
* @type {object}
|
|
14820
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
14821
|
+
*/
|
|
14822
|
+
content?: object;
|
|
14823
|
+
/**
|
|
14824
|
+
*
|
|
14825
|
+
* @type {string}
|
|
14826
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
14827
|
+
*/
|
|
14828
|
+
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
14829
|
+
}
|
|
14830
|
+
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
14831
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
14832
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
14833
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
14834
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
14835
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
14836
|
+
readonly LOCALE: "LOCALE";
|
|
14837
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
14838
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
14839
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
14840
|
+
readonly WEEK_START: "WEEK_START";
|
|
14841
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
14842
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
14843
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
14844
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
14845
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
14846
|
+
readonly ALERT: "ALERT";
|
|
14847
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
14848
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
14849
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
14850
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
14851
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
14852
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
14853
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
14854
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
14855
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
14856
|
+
};
|
|
14857
|
+
export type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
14347
14858
|
/**
|
|
14348
14859
|
*
|
|
14349
14860
|
* @export
|
|
@@ -14383,10 +14894,10 @@ export interface JsonApiOrganizationSettingOutList {
|
|
|
14383
14894
|
links?: ListLinks;
|
|
14384
14895
|
/**
|
|
14385
14896
|
*
|
|
14386
|
-
* @type {
|
|
14897
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
14387
14898
|
* @memberof JsonApiOrganizationSettingOutList
|
|
14388
14899
|
*/
|
|
14389
|
-
meta?:
|
|
14900
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
14390
14901
|
}
|
|
14391
14902
|
/**
|
|
14392
14903
|
*
|
|
@@ -14408,10 +14919,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
14408
14919
|
id: string;
|
|
14409
14920
|
/**
|
|
14410
14921
|
*
|
|
14411
|
-
* @type {
|
|
14922
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14412
14923
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
14413
14924
|
*/
|
|
14414
|
-
attributes?:
|
|
14925
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14415
14926
|
/**
|
|
14416
14927
|
*
|
|
14417
14928
|
* @type {ObjectLinks}
|
|
@@ -14443,10 +14954,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
14443
14954
|
id: string;
|
|
14444
14955
|
/**
|
|
14445
14956
|
*
|
|
14446
|
-
* @type {
|
|
14957
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
14447
14958
|
* @memberof JsonApiOrganizationSettingPatch
|
|
14448
14959
|
*/
|
|
14449
|
-
attributes?:
|
|
14960
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
14450
14961
|
}
|
|
14451
14962
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
14452
14963
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14575,10 +15086,10 @@ export interface JsonApiThemeOutList {
|
|
|
14575
15086
|
links?: ListLinks;
|
|
14576
15087
|
/**
|
|
14577
15088
|
*
|
|
14578
|
-
* @type {
|
|
15089
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
14579
15090
|
* @memberof JsonApiThemeOutList
|
|
14580
15091
|
*/
|
|
14581
|
-
meta?:
|
|
15092
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
14582
15093
|
}
|
|
14583
15094
|
/**
|
|
14584
15095
|
*
|
|
@@ -14677,21 +15188,58 @@ export interface JsonApiUserDataFilterIn {
|
|
|
14677
15188
|
id: string;
|
|
14678
15189
|
/**
|
|
14679
15190
|
*
|
|
14680
|
-
* @type {
|
|
15191
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14681
15192
|
* @memberof JsonApiUserDataFilterIn
|
|
14682
15193
|
*/
|
|
14683
|
-
attributes:
|
|
15194
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14684
15195
|
/**
|
|
14685
15196
|
*
|
|
14686
|
-
* @type {
|
|
15197
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
14687
15198
|
* @memberof JsonApiUserDataFilterIn
|
|
14688
15199
|
*/
|
|
14689
|
-
relationships?:
|
|
15200
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
14690
15201
|
}
|
|
14691
15202
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
14692
15203
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
14693
15204
|
};
|
|
14694
15205
|
export type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
15206
|
+
/**
|
|
15207
|
+
*
|
|
15208
|
+
* @export
|
|
15209
|
+
* @interface JsonApiUserDataFilterInAttributes
|
|
15210
|
+
*/
|
|
15211
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
15212
|
+
/**
|
|
15213
|
+
*
|
|
15214
|
+
* @type {string}
|
|
15215
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15216
|
+
*/
|
|
15217
|
+
title?: string;
|
|
15218
|
+
/**
|
|
15219
|
+
*
|
|
15220
|
+
* @type {string}
|
|
15221
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15222
|
+
*/
|
|
15223
|
+
description?: string;
|
|
15224
|
+
/**
|
|
15225
|
+
*
|
|
15226
|
+
* @type {Array<string>}
|
|
15227
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15228
|
+
*/
|
|
15229
|
+
tags?: Array<string>;
|
|
15230
|
+
/**
|
|
15231
|
+
*
|
|
15232
|
+
* @type {boolean}
|
|
15233
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15234
|
+
*/
|
|
15235
|
+
areRelationsValid?: boolean;
|
|
15236
|
+
/**
|
|
15237
|
+
*
|
|
15238
|
+
* @type {string}
|
|
15239
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
15240
|
+
*/
|
|
15241
|
+
maql: string;
|
|
15242
|
+
}
|
|
14695
15243
|
/**
|
|
14696
15244
|
*
|
|
14697
15245
|
* @export
|
|
@@ -14705,6 +15253,38 @@ export interface JsonApiUserDataFilterInDocument {
|
|
|
14705
15253
|
*/
|
|
14706
15254
|
data: JsonApiUserDataFilterIn;
|
|
14707
15255
|
}
|
|
15256
|
+
/**
|
|
15257
|
+
*
|
|
15258
|
+
* @export
|
|
15259
|
+
* @interface JsonApiUserDataFilterInRelationships
|
|
15260
|
+
*/
|
|
15261
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
15262
|
+
/**
|
|
15263
|
+
*
|
|
15264
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
15265
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15266
|
+
*/
|
|
15267
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
15268
|
+
/**
|
|
15269
|
+
*
|
|
15270
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
15271
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
15272
|
+
*/
|
|
15273
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
15274
|
+
}
|
|
15275
|
+
/**
|
|
15276
|
+
*
|
|
15277
|
+
* @export
|
|
15278
|
+
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15279
|
+
*/
|
|
15280
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
15281
|
+
/**
|
|
15282
|
+
*
|
|
15283
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
15284
|
+
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
15285
|
+
*/
|
|
15286
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
15287
|
+
}
|
|
14708
15288
|
/**
|
|
14709
15289
|
* JSON:API representation of userDataFilter entity.
|
|
14710
15290
|
* @export
|
|
@@ -14731,10 +15311,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
14731
15311
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
14732
15312
|
/**
|
|
14733
15313
|
*
|
|
14734
|
-
* @type {
|
|
15314
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14735
15315
|
* @memberof JsonApiUserDataFilterOut
|
|
14736
15316
|
*/
|
|
14737
|
-
attributes:
|
|
15317
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14738
15318
|
/**
|
|
14739
15319
|
*
|
|
14740
15320
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -14746,43 +15326,6 @@ export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
|
14746
15326
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
14747
15327
|
};
|
|
14748
15328
|
export type JsonApiUserDataFilterOutTypeEnum = typeof JsonApiUserDataFilterOutTypeEnum[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
14749
|
-
/**
|
|
14750
|
-
*
|
|
14751
|
-
* @export
|
|
14752
|
-
* @interface JsonApiUserDataFilterOutAttributes
|
|
14753
|
-
*/
|
|
14754
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
14755
|
-
/**
|
|
14756
|
-
*
|
|
14757
|
-
* @type {string}
|
|
14758
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14759
|
-
*/
|
|
14760
|
-
title?: string;
|
|
14761
|
-
/**
|
|
14762
|
-
*
|
|
14763
|
-
* @type {string}
|
|
14764
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14765
|
-
*/
|
|
14766
|
-
description?: string;
|
|
14767
|
-
/**
|
|
14768
|
-
*
|
|
14769
|
-
* @type {Array<string>}
|
|
14770
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14771
|
-
*/
|
|
14772
|
-
tags?: Array<string>;
|
|
14773
|
-
/**
|
|
14774
|
-
*
|
|
14775
|
-
* @type {boolean}
|
|
14776
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14777
|
-
*/
|
|
14778
|
-
areRelationsValid?: boolean;
|
|
14779
|
-
/**
|
|
14780
|
-
*
|
|
14781
|
-
* @type {string}
|
|
14782
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14783
|
-
*/
|
|
14784
|
-
maql: string;
|
|
14785
|
-
}
|
|
14786
15329
|
/**
|
|
14787
15330
|
*
|
|
14788
15331
|
* @export
|
|
@@ -14833,10 +15376,10 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14833
15376
|
links?: ListLinks;
|
|
14834
15377
|
/**
|
|
14835
15378
|
*
|
|
14836
|
-
* @type {
|
|
15379
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
14837
15380
|
* @memberof JsonApiUserDataFilterOutList
|
|
14838
15381
|
*/
|
|
14839
|
-
meta?:
|
|
15382
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
14840
15383
|
/**
|
|
14841
15384
|
* Included resources
|
|
14842
15385
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -14852,16 +15395,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14852
15395
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
14853
15396
|
/**
|
|
14854
15397
|
*
|
|
14855
|
-
* @type {
|
|
15398
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
14856
15399
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14857
15400
|
*/
|
|
14858
|
-
user?:
|
|
15401
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
14859
15402
|
/**
|
|
14860
15403
|
*
|
|
14861
|
-
* @type {
|
|
15404
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14862
15405
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14863
15406
|
*/
|
|
14864
|
-
userGroup?:
|
|
15407
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14865
15408
|
/**
|
|
14866
15409
|
*
|
|
14867
15410
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -14919,10 +15462,10 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
14919
15462
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
14920
15463
|
/**
|
|
14921
15464
|
*
|
|
14922
|
-
* @type {
|
|
15465
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14923
15466
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
14924
15467
|
*/
|
|
14925
|
-
attributes:
|
|
15468
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14926
15469
|
/**
|
|
14927
15470
|
*
|
|
14928
15471
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -14966,10 +15509,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
14966
15509
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
14967
15510
|
/**
|
|
14968
15511
|
*
|
|
14969
|
-
* @type {
|
|
15512
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
14970
15513
|
* @memberof JsonApiUserDataFilterPatch
|
|
14971
15514
|
*/
|
|
14972
|
-
relationships?:
|
|
15515
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
14973
15516
|
}
|
|
14974
15517
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
14975
15518
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15025,25 +15568,6 @@ export interface JsonApiUserDataFilterPatchDocument {
|
|
|
15025
15568
|
*/
|
|
15026
15569
|
data: JsonApiUserDataFilterPatch;
|
|
15027
15570
|
}
|
|
15028
|
-
/**
|
|
15029
|
-
*
|
|
15030
|
-
* @export
|
|
15031
|
-
* @interface JsonApiUserDataFilterPatchRelationships
|
|
15032
|
-
*/
|
|
15033
|
-
export interface JsonApiUserDataFilterPatchRelationships {
|
|
15034
|
-
/**
|
|
15035
|
-
*
|
|
15036
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
15037
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
15038
|
-
*/
|
|
15039
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
15040
|
-
/**
|
|
15041
|
-
*
|
|
15042
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
15043
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
15044
|
-
*/
|
|
15045
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
15046
|
-
}
|
|
15047
15571
|
/**
|
|
15048
15572
|
* JSON:API representation of userDataFilter entity.
|
|
15049
15573
|
* @export
|
|
@@ -15064,16 +15588,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
15064
15588
|
id?: string;
|
|
15065
15589
|
/**
|
|
15066
15590
|
*
|
|
15067
|
-
* @type {
|
|
15591
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
15068
15592
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15069
15593
|
*/
|
|
15070
|
-
attributes:
|
|
15594
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
15071
15595
|
/**
|
|
15072
15596
|
*
|
|
15073
|
-
* @type {
|
|
15597
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
15074
15598
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
15075
15599
|
*/
|
|
15076
|
-
relationships?:
|
|
15600
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
15077
15601
|
}
|
|
15078
15602
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
15079
15603
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -15256,10 +15780,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
15256
15780
|
links?: ListLinks;
|
|
15257
15781
|
/**
|
|
15258
15782
|
*
|
|
15259
|
-
* @type {
|
|
15783
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15260
15784
|
* @memberof JsonApiUserGroupOutList
|
|
15261
15785
|
*/
|
|
15262
|
-
meta?:
|
|
15786
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15263
15787
|
/**
|
|
15264
15788
|
* Included resources
|
|
15265
15789
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -15275,10 +15799,23 @@ export interface JsonApiUserGroupOutList {
|
|
|
15275
15799
|
export interface JsonApiUserGroupOutRelationships {
|
|
15276
15800
|
/**
|
|
15277
15801
|
*
|
|
15278
|
-
* @type {
|
|
15802
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
15279
15803
|
* @memberof JsonApiUserGroupOutRelationships
|
|
15280
15804
|
*/
|
|
15281
|
-
parents?:
|
|
15805
|
+
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
15806
|
+
}
|
|
15807
|
+
/**
|
|
15808
|
+
*
|
|
15809
|
+
* @export
|
|
15810
|
+
* @interface JsonApiUserGroupOutRelationshipsParents
|
|
15811
|
+
*/
|
|
15812
|
+
export interface JsonApiUserGroupOutRelationshipsParents {
|
|
15813
|
+
/**
|
|
15814
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
15815
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
15816
|
+
* @memberof JsonApiUserGroupOutRelationshipsParents
|
|
15817
|
+
*/
|
|
15818
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
15282
15819
|
}
|
|
15283
15820
|
/**
|
|
15284
15821
|
*
|
|
@@ -15491,10 +16028,10 @@ export interface JsonApiUserIdentifierOutList {
|
|
|
15491
16028
|
links?: ListLinks;
|
|
15492
16029
|
/**
|
|
15493
16030
|
*
|
|
15494
|
-
* @type {
|
|
16031
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15495
16032
|
* @memberof JsonApiUserIdentifierOutList
|
|
15496
16033
|
*/
|
|
15497
|
-
meta?:
|
|
16034
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15498
16035
|
}
|
|
15499
16036
|
/**
|
|
15500
16037
|
*
|
|
@@ -15719,10 +16256,10 @@ export interface JsonApiUserOutList {
|
|
|
15719
16256
|
links?: ListLinks;
|
|
15720
16257
|
/**
|
|
15721
16258
|
*
|
|
15722
|
-
* @type {
|
|
16259
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
15723
16260
|
* @memberof JsonApiUserOutList
|
|
15724
16261
|
*/
|
|
15725
|
-
meta?:
|
|
16262
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
15726
16263
|
/**
|
|
15727
16264
|
* Included resources
|
|
15728
16265
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -15738,23 +16275,10 @@ export interface JsonApiUserOutList {
|
|
|
15738
16275
|
export interface JsonApiUserOutRelationships {
|
|
15739
16276
|
/**
|
|
15740
16277
|
*
|
|
15741
|
-
* @type {
|
|
16278
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
15742
16279
|
* @memberof JsonApiUserOutRelationships
|
|
15743
16280
|
*/
|
|
15744
|
-
userGroups?:
|
|
15745
|
-
}
|
|
15746
|
-
/**
|
|
15747
|
-
*
|
|
15748
|
-
* @export
|
|
15749
|
-
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
15750
|
-
*/
|
|
15751
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
15752
|
-
/**
|
|
15753
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
15754
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
15755
|
-
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
15756
|
-
*/
|
|
15757
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
16281
|
+
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
15758
16282
|
}
|
|
15759
16283
|
/**
|
|
15760
16284
|
*
|
|
@@ -15865,10 +16389,10 @@ export interface JsonApiUserSettingIn {
|
|
|
15865
16389
|
id: string;
|
|
15866
16390
|
/**
|
|
15867
16391
|
*
|
|
15868
|
-
* @type {
|
|
16392
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
15869
16393
|
* @memberof JsonApiUserSettingIn
|
|
15870
16394
|
*/
|
|
15871
|
-
attributes?:
|
|
16395
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
15872
16396
|
}
|
|
15873
16397
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
15874
16398
|
readonly USER_SETTING: "userSetting";
|
|
@@ -15907,62 +16431,15 @@ export interface JsonApiUserSettingOut {
|
|
|
15907
16431
|
id: string;
|
|
15908
16432
|
/**
|
|
15909
16433
|
*
|
|
15910
|
-
* @type {
|
|
16434
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
15911
16435
|
* @memberof JsonApiUserSettingOut
|
|
15912
16436
|
*/
|
|
15913
|
-
attributes?:
|
|
16437
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
15914
16438
|
}
|
|
15915
16439
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
15916
16440
|
readonly USER_SETTING: "userSetting";
|
|
15917
16441
|
};
|
|
15918
16442
|
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15919
|
-
/**
|
|
15920
|
-
*
|
|
15921
|
-
* @export
|
|
15922
|
-
* @interface JsonApiUserSettingOutAttributes
|
|
15923
|
-
*/
|
|
15924
|
-
export interface JsonApiUserSettingOutAttributes {
|
|
15925
|
-
/**
|
|
15926
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
15927
|
-
* @type {object}
|
|
15928
|
-
* @memberof JsonApiUserSettingOutAttributes
|
|
15929
|
-
*/
|
|
15930
|
-
content?: object;
|
|
15931
|
-
/**
|
|
15932
|
-
*
|
|
15933
|
-
* @type {string}
|
|
15934
|
-
* @memberof JsonApiUserSettingOutAttributes
|
|
15935
|
-
*/
|
|
15936
|
-
type?: JsonApiUserSettingOutAttributesTypeEnum;
|
|
15937
|
-
}
|
|
15938
|
-
export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
15939
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
15940
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15941
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
15942
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
15943
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
15944
|
-
readonly LOCALE: "LOCALE";
|
|
15945
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
15946
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
15947
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
15948
|
-
readonly WEEK_START: "WEEK_START";
|
|
15949
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
15950
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
15951
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
15952
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
15953
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
15954
|
-
readonly ALERT: "ALERT";
|
|
15955
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
15956
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
15957
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
15958
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
15959
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
15960
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
15961
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
15962
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
15963
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
15964
|
-
};
|
|
15965
|
-
export type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
15966
16443
|
/**
|
|
15967
16444
|
*
|
|
15968
16445
|
* @export
|
|
@@ -16002,10 +16479,10 @@ export interface JsonApiUserSettingOutList {
|
|
|
16002
16479
|
links?: ListLinks;
|
|
16003
16480
|
/**
|
|
16004
16481
|
*
|
|
16005
|
-
* @type {
|
|
16482
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16006
16483
|
* @memberof JsonApiUserSettingOutList
|
|
16007
16484
|
*/
|
|
16008
|
-
meta?:
|
|
16485
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16009
16486
|
}
|
|
16010
16487
|
/**
|
|
16011
16488
|
*
|
|
@@ -16027,10 +16504,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16027
16504
|
id: string;
|
|
16028
16505
|
/**
|
|
16029
16506
|
*
|
|
16030
|
-
* @type {
|
|
16507
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
16031
16508
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16032
16509
|
*/
|
|
16033
|
-
attributes?:
|
|
16510
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
16034
16511
|
/**
|
|
16035
16512
|
*
|
|
16036
16513
|
* @type {ObjectLinks}
|
|
@@ -16068,10 +16545,10 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
16068
16545
|
id: string;
|
|
16069
16546
|
/**
|
|
16070
16547
|
*
|
|
16071
|
-
* @type {
|
|
16548
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
16072
16549
|
* @memberof JsonApiVisualizationObjectIn
|
|
16073
16550
|
*/
|
|
16074
|
-
attributes:
|
|
16551
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
16075
16552
|
}
|
|
16076
16553
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
16077
16554
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16248,10 +16725,10 @@ export interface JsonApiVisualizationObjectOutList {
|
|
|
16248
16725
|
links?: ListLinks;
|
|
16249
16726
|
/**
|
|
16250
16727
|
*
|
|
16251
|
-
* @type {
|
|
16728
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16252
16729
|
* @memberof JsonApiVisualizationObjectOutList
|
|
16253
16730
|
*/
|
|
16254
|
-
meta?:
|
|
16731
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16255
16732
|
/**
|
|
16256
16733
|
* Included resources
|
|
16257
16734
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -16532,10 +17009,10 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
16532
17009
|
id?: string;
|
|
16533
17010
|
/**
|
|
16534
17011
|
*
|
|
16535
|
-
* @type {
|
|
17012
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
16536
17013
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
16537
17014
|
*/
|
|
16538
|
-
attributes:
|
|
17015
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
16539
17016
|
}
|
|
16540
17017
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
16541
17018
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16742,10 +17219,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
|
|
|
16742
17219
|
links?: ListLinks;
|
|
16743
17220
|
/**
|
|
16744
17221
|
*
|
|
16745
|
-
* @type {
|
|
17222
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
16746
17223
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
16747
17224
|
*/
|
|
16748
|
-
meta?:
|
|
17225
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
16749
17226
|
/**
|
|
16750
17227
|
* Included resources
|
|
16751
17228
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -16894,21 +17371,46 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
16894
17371
|
id: string;
|
|
16895
17372
|
/**
|
|
16896
17373
|
*
|
|
16897
|
-
* @type {
|
|
17374
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16898
17375
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16899
17376
|
*/
|
|
16900
|
-
attributes?:
|
|
17377
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16901
17378
|
/**
|
|
16902
17379
|
*
|
|
16903
|
-
* @type {
|
|
17380
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16904
17381
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16905
17382
|
*/
|
|
16906
|
-
relationships?:
|
|
17383
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16907
17384
|
}
|
|
16908
17385
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
16909
17386
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16910
17387
|
};
|
|
16911
17388
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = typeof JsonApiWorkspaceDataFilterSettingInTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
17389
|
+
/**
|
|
17390
|
+
*
|
|
17391
|
+
* @export
|
|
17392
|
+
* @interface JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17393
|
+
*/
|
|
17394
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
17395
|
+
/**
|
|
17396
|
+
*
|
|
17397
|
+
* @type {string}
|
|
17398
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17399
|
+
*/
|
|
17400
|
+
title?: string;
|
|
17401
|
+
/**
|
|
17402
|
+
*
|
|
17403
|
+
* @type {string}
|
|
17404
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17405
|
+
*/
|
|
17406
|
+
description?: string;
|
|
17407
|
+
/**
|
|
17408
|
+
*
|
|
17409
|
+
* @type {Array<string>}
|
|
17410
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
17411
|
+
*/
|
|
17412
|
+
filterValues?: Array<string>;
|
|
17413
|
+
}
|
|
16912
17414
|
/**
|
|
16913
17415
|
*
|
|
16914
17416
|
* @export
|
|
@@ -16922,6 +17424,32 @@ export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
|
16922
17424
|
*/
|
|
16923
17425
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
16924
17426
|
}
|
|
17427
|
+
/**
|
|
17428
|
+
*
|
|
17429
|
+
* @export
|
|
17430
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationships
|
|
17431
|
+
*/
|
|
17432
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
17433
|
+
/**
|
|
17434
|
+
*
|
|
17435
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
|
|
17436
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationships
|
|
17437
|
+
*/
|
|
17438
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
17439
|
+
}
|
|
17440
|
+
/**
|
|
17441
|
+
*
|
|
17442
|
+
* @export
|
|
17443
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
17444
|
+
*/
|
|
17445
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
17446
|
+
/**
|
|
17447
|
+
*
|
|
17448
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17449
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
17450
|
+
*/
|
|
17451
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17452
|
+
}
|
|
16925
17453
|
/**
|
|
16926
17454
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
16927
17455
|
* @export
|
|
@@ -16971,46 +17499,21 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
16971
17499
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16972
17500
|
/**
|
|
16973
17501
|
*
|
|
16974
|
-
* @type {
|
|
17502
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16975
17503
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16976
17504
|
*/
|
|
16977
|
-
attributes?:
|
|
17505
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16978
17506
|
/**
|
|
16979
17507
|
*
|
|
16980
|
-
* @type {
|
|
17508
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16981
17509
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16982
17510
|
*/
|
|
16983
|
-
relationships?:
|
|
17511
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16984
17512
|
}
|
|
16985
17513
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
16986
17514
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16987
17515
|
};
|
|
16988
17516
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
16989
|
-
/**
|
|
16990
|
-
*
|
|
16991
|
-
* @export
|
|
16992
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16993
|
-
*/
|
|
16994
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
16995
|
-
/**
|
|
16996
|
-
*
|
|
16997
|
-
* @type {string}
|
|
16998
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16999
|
-
*/
|
|
17000
|
-
title?: string;
|
|
17001
|
-
/**
|
|
17002
|
-
*
|
|
17003
|
-
* @type {string}
|
|
17004
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
17005
|
-
*/
|
|
17006
|
-
description?: string;
|
|
17007
|
-
/**
|
|
17008
|
-
*
|
|
17009
|
-
* @type {Array<string>}
|
|
17010
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
17011
|
-
*/
|
|
17012
|
-
filterValues?: Array<string>;
|
|
17013
|
-
}
|
|
17014
17517
|
/**
|
|
17015
17518
|
*
|
|
17016
17519
|
* @export
|
|
@@ -17056,10 +17559,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17056
17559
|
links?: ListLinks;
|
|
17057
17560
|
/**
|
|
17058
17561
|
*
|
|
17059
|
-
* @type {
|
|
17562
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17060
17563
|
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
17061
17564
|
*/
|
|
17062
|
-
meta?:
|
|
17565
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17063
17566
|
/**
|
|
17064
17567
|
* Included resources
|
|
17065
17568
|
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
@@ -17067,32 +17570,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17067
17570
|
*/
|
|
17068
17571
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
17069
17572
|
}
|
|
17070
|
-
/**
|
|
17071
|
-
*
|
|
17072
|
-
* @export
|
|
17073
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
17074
|
-
*/
|
|
17075
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
17076
|
-
/**
|
|
17077
|
-
*
|
|
17078
|
-
* @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
|
|
17079
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
17080
|
-
*/
|
|
17081
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
17082
|
-
}
|
|
17083
|
-
/**
|
|
17084
|
-
*
|
|
17085
|
-
* @export
|
|
17086
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
17087
|
-
*/
|
|
17088
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
17089
|
-
/**
|
|
17090
|
-
*
|
|
17091
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17092
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
17093
|
-
*/
|
|
17094
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17095
|
-
}
|
|
17096
17573
|
/**
|
|
17097
17574
|
*
|
|
17098
17575
|
* @export
|
|
@@ -17119,16 +17596,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
17119
17596
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17120
17597
|
/**
|
|
17121
17598
|
*
|
|
17122
|
-
* @type {
|
|
17599
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17123
17600
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17124
17601
|
*/
|
|
17125
|
-
attributes?:
|
|
17602
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17126
17603
|
/**
|
|
17127
17604
|
*
|
|
17128
|
-
* @type {
|
|
17605
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17129
17606
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17130
17607
|
*/
|
|
17131
|
-
relationships?:
|
|
17608
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17132
17609
|
/**
|
|
17133
17610
|
*
|
|
17134
17611
|
* @type {ObjectLinks}
|
|
@@ -17160,16 +17637,16 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
17160
17637
|
id: string;
|
|
17161
17638
|
/**
|
|
17162
17639
|
*
|
|
17163
|
-
* @type {
|
|
17640
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
17164
17641
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17165
17642
|
*/
|
|
17166
|
-
attributes?:
|
|
17643
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
17167
17644
|
/**
|
|
17168
17645
|
*
|
|
17169
|
-
* @type {
|
|
17646
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
17170
17647
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17171
17648
|
*/
|
|
17172
|
-
relationships?:
|
|
17649
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
17173
17650
|
}
|
|
17174
17651
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
17175
17652
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -17420,10 +17897,10 @@ export interface JsonApiWorkspaceOutList {
|
|
|
17420
17897
|
links?: ListLinks;
|
|
17421
17898
|
/**
|
|
17422
17899
|
*
|
|
17423
|
-
* @type {
|
|
17900
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17424
17901
|
* @memberof JsonApiWorkspaceOutList
|
|
17425
17902
|
*/
|
|
17426
|
-
meta?:
|
|
17903
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17427
17904
|
/**
|
|
17428
17905
|
* Included resources
|
|
17429
17906
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -17666,10 +18143,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
17666
18143
|
id: string;
|
|
17667
18144
|
/**
|
|
17668
18145
|
*
|
|
17669
|
-
* @type {
|
|
18146
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17670
18147
|
* @memberof JsonApiWorkspaceSettingIn
|
|
17671
18148
|
*/
|
|
17672
|
-
attributes?:
|
|
18149
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17673
18150
|
}
|
|
17674
18151
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
17675
18152
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17714,10 +18191,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
17714
18191
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17715
18192
|
/**
|
|
17716
18193
|
*
|
|
17717
|
-
* @type {
|
|
18194
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17718
18195
|
* @memberof JsonApiWorkspaceSettingOut
|
|
17719
18196
|
*/
|
|
17720
|
-
attributes?:
|
|
18197
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17721
18198
|
}
|
|
17722
18199
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
17723
18200
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17762,10 +18239,10 @@ export interface JsonApiWorkspaceSettingOutList {
|
|
|
17762
18239
|
links?: ListLinks;
|
|
17763
18240
|
/**
|
|
17764
18241
|
*
|
|
17765
|
-
* @type {
|
|
18242
|
+
* @type {JsonApiColorPaletteOutListMeta}
|
|
17766
18243
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
17767
18244
|
*/
|
|
17768
|
-
meta?:
|
|
18245
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
17769
18246
|
}
|
|
17770
18247
|
/**
|
|
17771
18248
|
*
|
|
@@ -17793,10 +18270,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
17793
18270
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17794
18271
|
/**
|
|
17795
18272
|
*
|
|
17796
|
-
* @type {
|
|
18273
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17797
18274
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
17798
18275
|
*/
|
|
17799
|
-
attributes?:
|
|
18276
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17800
18277
|
/**
|
|
17801
18278
|
*
|
|
17802
18279
|
* @type {ObjectLinks}
|
|
@@ -17828,10 +18305,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
17828
18305
|
id: string;
|
|
17829
18306
|
/**
|
|
17830
18307
|
*
|
|
17831
|
-
* @type {
|
|
18308
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17832
18309
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
17833
18310
|
*/
|
|
17834
|
-
attributes?:
|
|
18311
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17835
18312
|
}
|
|
17836
18313
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
17837
18314
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17870,10 +18347,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
17870
18347
|
id?: string;
|
|
17871
18348
|
/**
|
|
17872
18349
|
*
|
|
17873
|
-
* @type {
|
|
18350
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17874
18351
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
17875
18352
|
*/
|
|
17876
|
-
attributes?:
|
|
18353
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17877
18354
|
}
|
|
17878
18355
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
17879
18356
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18287,6 +18764,19 @@ export declare const OrganizationPermissionAssignmentPermissionsEnum: {
|
|
|
18287
18764
|
readonly SELF_CREATE_TOKEN: "SELF_CREATE_TOKEN";
|
|
18288
18765
|
};
|
|
18289
18766
|
export type OrganizationPermissionAssignmentPermissionsEnum = typeof OrganizationPermissionAssignmentPermissionsEnum[keyof typeof OrganizationPermissionAssignmentPermissionsEnum];
|
|
18767
|
+
/**
|
|
18768
|
+
*
|
|
18769
|
+
* @export
|
|
18770
|
+
* @interface Over
|
|
18771
|
+
*/
|
|
18772
|
+
export interface Over {
|
|
18773
|
+
/**
|
|
18774
|
+
*
|
|
18775
|
+
* @type {Array<IdentifierRef>}
|
|
18776
|
+
* @memberof Over
|
|
18777
|
+
*/
|
|
18778
|
+
attributes: Array<IdentifierRef>;
|
|
18779
|
+
}
|
|
18290
18780
|
/**
|
|
18291
18781
|
*
|
|
18292
18782
|
* @export
|
|
@@ -19071,7 +19561,7 @@ export declare const RelativeOperatorEnum: {
|
|
|
19071
19561
|
};
|
|
19072
19562
|
export type RelativeOperatorEnum = typeof RelativeOperatorEnum[keyof typeof RelativeOperatorEnum];
|
|
19073
19563
|
/**
|
|
19074
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
19564
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
|
|
19075
19565
|
* @export
|
|
19076
19566
|
* @interface RelativeDateFilter
|
|
19077
19567
|
*/
|
|
@@ -19119,6 +19609,12 @@ export interface RelativeDateFilterRelativeDateFilter {
|
|
|
19119
19609
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19120
19610
|
*/
|
|
19121
19611
|
applyOnResult?: boolean;
|
|
19612
|
+
/**
|
|
19613
|
+
*
|
|
19614
|
+
* @type {BoundedFilter}
|
|
19615
|
+
* @memberof RelativeDateFilterRelativeDateFilter
|
|
19616
|
+
*/
|
|
19617
|
+
boundedFilter?: BoundedFilter;
|
|
19122
19618
|
/**
|
|
19123
19619
|
*
|
|
19124
19620
|
* @type {AfmObjectIdentifierDataset}
|
|
@@ -19682,6 +20178,19 @@ export declare const SqlColumnDataTypeEnum: {
|
|
|
19682
20178
|
readonly BOOLEAN: "BOOLEAN";
|
|
19683
20179
|
};
|
|
19684
20180
|
export type SqlColumnDataTypeEnum = typeof SqlColumnDataTypeEnum[keyof typeof SqlColumnDataTypeEnum];
|
|
20181
|
+
/**
|
|
20182
|
+
*
|
|
20183
|
+
* @export
|
|
20184
|
+
* @interface SwitchIdentityProviderRequest
|
|
20185
|
+
*/
|
|
20186
|
+
export interface SwitchIdentityProviderRequest {
|
|
20187
|
+
/**
|
|
20188
|
+
* Identity provider ID to set as active for the organization.
|
|
20189
|
+
* @type {string}
|
|
20190
|
+
* @memberof SwitchIdentityProviderRequest
|
|
20191
|
+
*/
|
|
20192
|
+
idpId: string;
|
|
20193
|
+
}
|
|
19685
20194
|
/**
|
|
19686
20195
|
* Table override settings.
|
|
19687
20196
|
* @export
|
|
@@ -21228,6 +21737,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
21228
21737
|
* @throws {RequiredError}
|
|
21229
21738
|
*/
|
|
21230
21739
|
setTranslations: (workspaceId: string, xliff: Xliff, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21740
|
+
/**
|
|
21741
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
21742
|
+
* @summary Switch Active Identity Provider
|
|
21743
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
21744
|
+
* @param {*} [options] Override http request option.
|
|
21745
|
+
* @throws {RequiredError}
|
|
21746
|
+
*/
|
|
21747
|
+
switchActiveIdentityProvider: (switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21231
21748
|
/**
|
|
21232
21749
|
*
|
|
21233
21750
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -21511,6 +22028,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
21511
22028
|
* @throws {RequiredError}
|
|
21512
22029
|
*/
|
|
21513
22030
|
setTranslations(workspaceId: string, xliff: Xliff, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
22031
|
+
/**
|
|
22032
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
22033
|
+
* @summary Switch Active Identity Provider
|
|
22034
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
22035
|
+
* @param {*} [options] Override http request option.
|
|
22036
|
+
* @throws {RequiredError}
|
|
22037
|
+
*/
|
|
22038
|
+
switchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21514
22039
|
/**
|
|
21515
22040
|
*
|
|
21516
22041
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -21776,6 +22301,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
21776
22301
|
* @throws {RequiredError}
|
|
21777
22302
|
*/
|
|
21778
22303
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22304
|
+
/**
|
|
22305
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
22306
|
+
* @summary Switch Active Identity Provider
|
|
22307
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
22308
|
+
* @param {*} [options] Override http request option.
|
|
22309
|
+
* @throws {RequiredError}
|
|
22310
|
+
*/
|
|
22311
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
21779
22312
|
/**
|
|
21780
22313
|
*
|
|
21781
22314
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22068,6 +22601,15 @@ export interface ActionsApiInterface {
|
|
|
22068
22601
|
* @memberof ActionsApiInterface
|
|
22069
22602
|
*/
|
|
22070
22603
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22604
|
+
/**
|
|
22605
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
22606
|
+
* @summary Switch Active Identity Provider
|
|
22607
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
22608
|
+
* @param {*} [options] Override http request option.
|
|
22609
|
+
* @throws {RequiredError}
|
|
22610
|
+
* @memberof ActionsApiInterface
|
|
22611
|
+
*/
|
|
22612
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22071
22613
|
/**
|
|
22072
22614
|
*
|
|
22073
22615
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22533,6 +23075,19 @@ export interface ActionsApiSetTranslationsRequest {
|
|
|
22533
23075
|
*/
|
|
22534
23076
|
readonly xliff: Xliff;
|
|
22535
23077
|
}
|
|
23078
|
+
/**
|
|
23079
|
+
* Request parameters for switchActiveIdentityProvider operation in ActionsApi.
|
|
23080
|
+
* @export
|
|
23081
|
+
* @interface ActionsApiSwitchActiveIdentityProviderRequest
|
|
23082
|
+
*/
|
|
23083
|
+
export interface ActionsApiSwitchActiveIdentityProviderRequest {
|
|
23084
|
+
/**
|
|
23085
|
+
*
|
|
23086
|
+
* @type {SwitchIdentityProviderRequest}
|
|
23087
|
+
* @memberof ActionsApiSwitchActiveIdentityProvider
|
|
23088
|
+
*/
|
|
23089
|
+
readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
|
|
23090
|
+
}
|
|
22536
23091
|
/**
|
|
22537
23092
|
* Request parameters for unsubscribeAutomation operation in ActionsApi.
|
|
22538
23093
|
* @export
|
|
@@ -22850,6 +23405,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
22850
23405
|
* @memberof ActionsApi
|
|
22851
23406
|
*/
|
|
22852
23407
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23408
|
+
/**
|
|
23409
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
23410
|
+
* @summary Switch Active Identity Provider
|
|
23411
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
23412
|
+
* @param {*} [options] Override http request option.
|
|
23413
|
+
* @throws {RequiredError}
|
|
23414
|
+
* @memberof ActionsApi
|
|
23415
|
+
*/
|
|
23416
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22853
23417
|
/**
|
|
22854
23418
|
*
|
|
22855
23419
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -53949,6 +54513,94 @@ export declare class OptionsApi extends BaseAPI implements OptionsApiInterface {
|
|
|
53949
54513
|
*/
|
|
53950
54514
|
getAllOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
53951
54515
|
}
|
|
54516
|
+
/**
|
|
54517
|
+
* OrganizationApi - axios parameter creator
|
|
54518
|
+
* @export
|
|
54519
|
+
*/
|
|
54520
|
+
export declare const OrganizationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
54521
|
+
/**
|
|
54522
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54523
|
+
* @summary Switch Active Identity Provider
|
|
54524
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
54525
|
+
* @param {*} [options] Override http request option.
|
|
54526
|
+
* @throws {RequiredError}
|
|
54527
|
+
*/
|
|
54528
|
+
switchActiveIdentityProvider: (switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54529
|
+
};
|
|
54530
|
+
/**
|
|
54531
|
+
* OrganizationApi - functional programming interface
|
|
54532
|
+
* @export
|
|
54533
|
+
*/
|
|
54534
|
+
export declare const OrganizationApiFp: (configuration?: Configuration) => {
|
|
54535
|
+
/**
|
|
54536
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54537
|
+
* @summary Switch Active Identity Provider
|
|
54538
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
54539
|
+
* @param {*} [options] Override http request option.
|
|
54540
|
+
* @throws {RequiredError}
|
|
54541
|
+
*/
|
|
54542
|
+
switchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
54543
|
+
};
|
|
54544
|
+
/**
|
|
54545
|
+
* OrganizationApi - factory interface
|
|
54546
|
+
* @export
|
|
54547
|
+
*/
|
|
54548
|
+
export declare const OrganizationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54549
|
+
/**
|
|
54550
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54551
|
+
* @summary Switch Active Identity Provider
|
|
54552
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54553
|
+
* @param {*} [options] Override http request option.
|
|
54554
|
+
* @throws {RequiredError}
|
|
54555
|
+
*/
|
|
54556
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
54557
|
+
};
|
|
54558
|
+
/**
|
|
54559
|
+
* OrganizationApi - interface
|
|
54560
|
+
* @export
|
|
54561
|
+
* @interface OrganizationApi
|
|
54562
|
+
*/
|
|
54563
|
+
export interface OrganizationApiInterface {
|
|
54564
|
+
/**
|
|
54565
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54566
|
+
* @summary Switch Active Identity Provider
|
|
54567
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54568
|
+
* @param {*} [options] Override http request option.
|
|
54569
|
+
* @throws {RequiredError}
|
|
54570
|
+
* @memberof OrganizationApiInterface
|
|
54571
|
+
*/
|
|
54572
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
54573
|
+
}
|
|
54574
|
+
/**
|
|
54575
|
+
* Request parameters for switchActiveIdentityProvider operation in OrganizationApi.
|
|
54576
|
+
* @export
|
|
54577
|
+
* @interface OrganizationApiSwitchActiveIdentityProviderRequest
|
|
54578
|
+
*/
|
|
54579
|
+
export interface OrganizationApiSwitchActiveIdentityProviderRequest {
|
|
54580
|
+
/**
|
|
54581
|
+
*
|
|
54582
|
+
* @type {SwitchIdentityProviderRequest}
|
|
54583
|
+
* @memberof OrganizationApiSwitchActiveIdentityProvider
|
|
54584
|
+
*/
|
|
54585
|
+
readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
|
|
54586
|
+
}
|
|
54587
|
+
/**
|
|
54588
|
+
* OrganizationApi - object-oriented interface
|
|
54589
|
+
* @export
|
|
54590
|
+
* @class OrganizationApi
|
|
54591
|
+
* @extends {BaseAPI}
|
|
54592
|
+
*/
|
|
54593
|
+
export declare class OrganizationApi extends BaseAPI implements OrganizationApiInterface {
|
|
54594
|
+
/**
|
|
54595
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54596
|
+
* @summary Switch Active Identity Provider
|
|
54597
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54598
|
+
* @param {*} [options] Override http request option.
|
|
54599
|
+
* @throws {RequiredError}
|
|
54600
|
+
* @memberof OrganizationApi
|
|
54601
|
+
*/
|
|
54602
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
54603
|
+
}
|
|
53952
54604
|
/**
|
|
53953
54605
|
* OrganizationControllerApi - axios parameter creator
|
|
53954
54606
|
* @export
|