@gooddata/api-client-tiger 10.33.0-alpha.2 → 10.33.0-alpha.21
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 +12623 -9742
- 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/automation-json-api/api.d.ts +417 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +57 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +341 -1
- package/esm/generated/export-json-api/api.d.ts +1073 -1073
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +346 -342
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +1183 -588
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +250 -8
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8918 -8515
- package/esm/index.d.ts +3 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -517,12 +517,62 @@ export declare const AssigneeRuleTypeEnum: {
|
|
|
517
517
|
readonly ALL_WORKSPACE_USERS: "allWorkspaceUsers";
|
|
518
518
|
};
|
|
519
519
|
export type AssigneeRuleTypeEnum = typeof AssigneeRuleTypeEnum[keyof typeof AssigneeRuleTypeEnum];
|
|
520
|
+
/**
|
|
521
|
+
* @type AttributeElements
|
|
522
|
+
* @export
|
|
523
|
+
*/
|
|
524
|
+
export type AttributeElements = AttributeElementsByRef | AttributeElementsByValue;
|
|
525
|
+
/**
|
|
526
|
+
*
|
|
527
|
+
* @export
|
|
528
|
+
* @interface AttributeElementsByRef
|
|
529
|
+
*/
|
|
530
|
+
export interface AttributeElementsByRef {
|
|
531
|
+
/**
|
|
532
|
+
* List of attribute elements by reference
|
|
533
|
+
* @type {Array<string>}
|
|
534
|
+
* @memberof AttributeElementsByRef
|
|
535
|
+
*/
|
|
536
|
+
uris: Array<string>;
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
*
|
|
540
|
+
* @export
|
|
541
|
+
* @interface AttributeElementsByValue
|
|
542
|
+
*/
|
|
543
|
+
export interface AttributeElementsByValue {
|
|
544
|
+
/**
|
|
545
|
+
* List of attribute elements by value
|
|
546
|
+
* @type {Array<string>}
|
|
547
|
+
* @memberof AttributeElementsByValue
|
|
548
|
+
*/
|
|
549
|
+
values: Array<string | null>;
|
|
550
|
+
}
|
|
520
551
|
/**
|
|
521
552
|
* @type AttributeFilter
|
|
522
553
|
* Abstract filter definition type attributes
|
|
523
554
|
* @export
|
|
524
555
|
*/
|
|
525
556
|
export type AttributeFilter = NegativeAttributeFilter | PositiveAttributeFilter;
|
|
557
|
+
/**
|
|
558
|
+
*
|
|
559
|
+
* @export
|
|
560
|
+
* @interface AttributeFilterByDate
|
|
561
|
+
*/
|
|
562
|
+
export interface AttributeFilterByDate {
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof AttributeFilterByDate
|
|
567
|
+
*/
|
|
568
|
+
filterLocalIdentifier: string;
|
|
569
|
+
/**
|
|
570
|
+
*
|
|
571
|
+
* @type {boolean}
|
|
572
|
+
* @memberof AttributeFilterByDate
|
|
573
|
+
*/
|
|
574
|
+
isCommonDate: boolean;
|
|
575
|
+
}
|
|
526
576
|
/**
|
|
527
577
|
* Filter on specific set of label values.
|
|
528
578
|
* @export
|
|
@@ -536,6 +586,25 @@ export interface AttributeFilterElements {
|
|
|
536
586
|
*/
|
|
537
587
|
values: Array<string | null>;
|
|
538
588
|
}
|
|
589
|
+
/**
|
|
590
|
+
*
|
|
591
|
+
* @export
|
|
592
|
+
* @interface AttributeFilterParent
|
|
593
|
+
*/
|
|
594
|
+
export interface AttributeFilterParent {
|
|
595
|
+
/**
|
|
596
|
+
*
|
|
597
|
+
* @type {string}
|
|
598
|
+
* @memberof AttributeFilterParent
|
|
599
|
+
*/
|
|
600
|
+
filterLocalIdentifier: string;
|
|
601
|
+
/**
|
|
602
|
+
*
|
|
603
|
+
* @type {Over}
|
|
604
|
+
* @memberof AttributeFilterParent
|
|
605
|
+
*/
|
|
606
|
+
over: Over;
|
|
607
|
+
}
|
|
539
608
|
/**
|
|
540
609
|
*
|
|
541
610
|
* @export
|
|
@@ -591,6 +660,19 @@ export declare const AutomationAlertTriggerEnum: {
|
|
|
591
660
|
readonly ONCE: "ONCE";
|
|
592
661
|
};
|
|
593
662
|
export type AutomationAlertTriggerEnum = typeof AutomationAlertTriggerEnum[keyof typeof AutomationAlertTriggerEnum];
|
|
663
|
+
/**
|
|
664
|
+
*
|
|
665
|
+
* @export
|
|
666
|
+
* @interface AutomationDashboardTabularExport
|
|
667
|
+
*/
|
|
668
|
+
export interface AutomationDashboardTabularExport {
|
|
669
|
+
/**
|
|
670
|
+
*
|
|
671
|
+
* @type {DashboardTabularExportRequestV2}
|
|
672
|
+
* @memberof AutomationDashboardTabularExport
|
|
673
|
+
*/
|
|
674
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
675
|
+
}
|
|
594
676
|
/**
|
|
595
677
|
*
|
|
596
678
|
* @export
|
|
@@ -1012,6 +1094,202 @@ export interface CustomOverride {
|
|
|
1012
1094
|
[key: string]: CustomMetric;
|
|
1013
1095
|
};
|
|
1014
1096
|
}
|
|
1097
|
+
/**
|
|
1098
|
+
*
|
|
1099
|
+
* @export
|
|
1100
|
+
* @interface DashboardAttributeFilter
|
|
1101
|
+
*/
|
|
1102
|
+
export interface DashboardAttributeFilter {
|
|
1103
|
+
/**
|
|
1104
|
+
*
|
|
1105
|
+
* @type {DashboardAttributeFilterAttributeFilter}
|
|
1106
|
+
* @memberof DashboardAttributeFilter
|
|
1107
|
+
*/
|
|
1108
|
+
attributeFilter: DashboardAttributeFilterAttributeFilter;
|
|
1109
|
+
}
|
|
1110
|
+
/**
|
|
1111
|
+
*
|
|
1112
|
+
* @export
|
|
1113
|
+
* @interface DashboardAttributeFilterAttributeFilter
|
|
1114
|
+
*/
|
|
1115
|
+
export interface DashboardAttributeFilterAttributeFilter {
|
|
1116
|
+
/**
|
|
1117
|
+
*
|
|
1118
|
+
* @type {IdentifierRef}
|
|
1119
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1120
|
+
*/
|
|
1121
|
+
displayForm: IdentifierRef;
|
|
1122
|
+
/**
|
|
1123
|
+
*
|
|
1124
|
+
* @type {boolean}
|
|
1125
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1126
|
+
*/
|
|
1127
|
+
negativeSelection: boolean;
|
|
1128
|
+
/**
|
|
1129
|
+
*
|
|
1130
|
+
* @type {AttributeElements}
|
|
1131
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1132
|
+
*/
|
|
1133
|
+
attributeElements: AttributeElements;
|
|
1134
|
+
/**
|
|
1135
|
+
*
|
|
1136
|
+
* @type {Array<AttributeFilterParent>}
|
|
1137
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1138
|
+
*/
|
|
1139
|
+
filterElementsBy?: Array<AttributeFilterParent>;
|
|
1140
|
+
/**
|
|
1141
|
+
*
|
|
1142
|
+
* @type {Array<AttributeFilterByDate>}
|
|
1143
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1144
|
+
*/
|
|
1145
|
+
filterElementsByDate?: Array<AttributeFilterByDate>;
|
|
1146
|
+
/**
|
|
1147
|
+
*
|
|
1148
|
+
* @type {Array<IdentifierRef>}
|
|
1149
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1150
|
+
*/
|
|
1151
|
+
validateElementsBy?: Array<IdentifierRef>;
|
|
1152
|
+
/**
|
|
1153
|
+
*
|
|
1154
|
+
* @type {string}
|
|
1155
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1156
|
+
*/
|
|
1157
|
+
title?: string;
|
|
1158
|
+
/**
|
|
1159
|
+
*
|
|
1160
|
+
* @type {string}
|
|
1161
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1162
|
+
*/
|
|
1163
|
+
selectionMode?: DashboardAttributeFilterAttributeFilterSelectionModeEnum;
|
|
1164
|
+
/**
|
|
1165
|
+
*
|
|
1166
|
+
* @type {string}
|
|
1167
|
+
* @memberof DashboardAttributeFilterAttributeFilter
|
|
1168
|
+
*/
|
|
1169
|
+
localIdentifier?: string;
|
|
1170
|
+
}
|
|
1171
|
+
export declare const DashboardAttributeFilterAttributeFilterSelectionModeEnum: {
|
|
1172
|
+
readonly SINGLE: "single";
|
|
1173
|
+
readonly MULTI: "multi";
|
|
1174
|
+
};
|
|
1175
|
+
export type DashboardAttributeFilterAttributeFilterSelectionModeEnum = typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum[keyof typeof DashboardAttributeFilterAttributeFilterSelectionModeEnum];
|
|
1176
|
+
/**
|
|
1177
|
+
*
|
|
1178
|
+
* @export
|
|
1179
|
+
* @interface DashboardDateFilter
|
|
1180
|
+
*/
|
|
1181
|
+
export interface DashboardDateFilter {
|
|
1182
|
+
/**
|
|
1183
|
+
*
|
|
1184
|
+
* @type {DashboardDateFilterDateFilter}
|
|
1185
|
+
* @memberof DashboardDateFilter
|
|
1186
|
+
*/
|
|
1187
|
+
dateFilter: DashboardDateFilterDateFilter;
|
|
1188
|
+
}
|
|
1189
|
+
/**
|
|
1190
|
+
*
|
|
1191
|
+
* @export
|
|
1192
|
+
* @interface DashboardDateFilterDateFilter
|
|
1193
|
+
*/
|
|
1194
|
+
export interface DashboardDateFilterDateFilter {
|
|
1195
|
+
/**
|
|
1196
|
+
*
|
|
1197
|
+
* @type {string}
|
|
1198
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1199
|
+
*/
|
|
1200
|
+
type: DashboardDateFilterDateFilterTypeEnum;
|
|
1201
|
+
/**
|
|
1202
|
+
*
|
|
1203
|
+
* @type {string}
|
|
1204
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1205
|
+
*/
|
|
1206
|
+
granularity: DashboardDateFilterDateFilterGranularityEnum;
|
|
1207
|
+
/**
|
|
1208
|
+
*
|
|
1209
|
+
* @type {string | number}
|
|
1210
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1211
|
+
*/
|
|
1212
|
+
from?: string | number;
|
|
1213
|
+
/**
|
|
1214
|
+
*
|
|
1215
|
+
* @type {string | number}
|
|
1216
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1217
|
+
*/
|
|
1218
|
+
to?: string | number;
|
|
1219
|
+
/**
|
|
1220
|
+
*
|
|
1221
|
+
* @type {IdentifierRef}
|
|
1222
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1223
|
+
*/
|
|
1224
|
+
dataSet?: IdentifierRef;
|
|
1225
|
+
/**
|
|
1226
|
+
*
|
|
1227
|
+
* @type {IdentifierRef}
|
|
1228
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1229
|
+
*/
|
|
1230
|
+
attribute?: IdentifierRef;
|
|
1231
|
+
/**
|
|
1232
|
+
*
|
|
1233
|
+
* @type {string}
|
|
1234
|
+
* @memberof DashboardDateFilterDateFilter
|
|
1235
|
+
*/
|
|
1236
|
+
localIdentifier?: string;
|
|
1237
|
+
}
|
|
1238
|
+
export declare const DashboardDateFilterDateFilterTypeEnum: {
|
|
1239
|
+
readonly RELATIVE: "relative";
|
|
1240
|
+
readonly ABSOLUTE: "absolute";
|
|
1241
|
+
};
|
|
1242
|
+
export type DashboardDateFilterDateFilterTypeEnum = typeof DashboardDateFilterDateFilterTypeEnum[keyof typeof DashboardDateFilterDateFilterTypeEnum];
|
|
1243
|
+
export declare const DashboardDateFilterDateFilterGranularityEnum: {
|
|
1244
|
+
readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
|
|
1245
|
+
readonly GDC_TIME_YEAR: "GDC.time.year";
|
|
1246
|
+
readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
|
|
1247
|
+
readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
|
|
1248
|
+
readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
|
|
1249
|
+
readonly GDC_TIME_WEEK: "GDC.time.week";
|
|
1250
|
+
readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
|
|
1251
|
+
readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
|
|
1252
|
+
readonly GDC_TIME_QUARTER: "GDC.time.quarter";
|
|
1253
|
+
readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
|
|
1254
|
+
readonly GDC_TIME_MONTH: "GDC.time.month";
|
|
1255
|
+
readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
|
|
1256
|
+
readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
|
|
1257
|
+
readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
|
|
1258
|
+
readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
|
|
1259
|
+
readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
|
|
1260
|
+
readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
|
|
1261
|
+
readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
|
|
1262
|
+
readonly GDC_TIME_DATE: "GDC.time.date";
|
|
1263
|
+
readonly GDC_TIME_HOUR: "GDC.time.hour";
|
|
1264
|
+
readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
|
|
1265
|
+
readonly GDC_TIME_MINUTE: "GDC.time.minute";
|
|
1266
|
+
readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
|
|
1267
|
+
};
|
|
1268
|
+
export type DashboardDateFilterDateFilterGranularityEnum = typeof DashboardDateFilterDateFilterGranularityEnum[keyof typeof DashboardDateFilterDateFilterGranularityEnum];
|
|
1269
|
+
/**
|
|
1270
|
+
* Additional settings.
|
|
1271
|
+
* @export
|
|
1272
|
+
* @interface DashboardExportSettings
|
|
1273
|
+
*/
|
|
1274
|
+
export interface DashboardExportSettings {
|
|
1275
|
+
/**
|
|
1276
|
+
* If true, the export will contain the information about the exported date and dashboard filters.
|
|
1277
|
+
* @type {boolean}
|
|
1278
|
+
* @memberof DashboardExportSettings
|
|
1279
|
+
*/
|
|
1280
|
+
exportInfo?: boolean;
|
|
1281
|
+
/**
|
|
1282
|
+
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
1283
|
+
* @type {boolean}
|
|
1284
|
+
* @memberof DashboardExportSettings
|
|
1285
|
+
*/
|
|
1286
|
+
mergeHeaders?: boolean;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* @type DashboardFilter
|
|
1290
|
+
* @export
|
|
1291
|
+
*/
|
|
1292
|
+
export type DashboardFilter = DashboardAttributeFilter | DashboardDateFilter;
|
|
1015
1293
|
/**
|
|
1016
1294
|
*
|
|
1017
1295
|
* @export
|
|
@@ -1098,6 +1376,53 @@ export declare const DashboardSlidesTemplateAppliedOnEnum: {
|
|
|
1098
1376
|
readonly PPTX: "PPTX";
|
|
1099
1377
|
};
|
|
1100
1378
|
export type DashboardSlidesTemplateAppliedOnEnum = typeof DashboardSlidesTemplateAppliedOnEnum[keyof typeof DashboardSlidesTemplateAppliedOnEnum];
|
|
1379
|
+
/**
|
|
1380
|
+
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
1381
|
+
* @export
|
|
1382
|
+
* @interface DashboardTabularExportRequestV2
|
|
1383
|
+
*/
|
|
1384
|
+
export interface DashboardTabularExportRequestV2 {
|
|
1385
|
+
/**
|
|
1386
|
+
* Requested tabular export type.
|
|
1387
|
+
* @type {string}
|
|
1388
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1389
|
+
*/
|
|
1390
|
+
format: DashboardTabularExportRequestV2FormatEnum;
|
|
1391
|
+
/**
|
|
1392
|
+
* Filename of downloaded file without extension.
|
|
1393
|
+
* @type {string}
|
|
1394
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1395
|
+
*/
|
|
1396
|
+
fileName: string;
|
|
1397
|
+
/**
|
|
1398
|
+
* List of filters that will be used instead of the default dashboard filters.
|
|
1399
|
+
* @type {Array<DashboardFilter>}
|
|
1400
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1401
|
+
*/
|
|
1402
|
+
dashboardFiltersOverride?: Array<DashboardFilter>;
|
|
1403
|
+
/**
|
|
1404
|
+
* Dashboard identifier
|
|
1405
|
+
* @type {string}
|
|
1406
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1407
|
+
*/
|
|
1408
|
+
dashboardId: string;
|
|
1409
|
+
/**
|
|
1410
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
1411
|
+
* @type {Array<string>}
|
|
1412
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1413
|
+
*/
|
|
1414
|
+
widgetIds?: Array<string>;
|
|
1415
|
+
/**
|
|
1416
|
+
*
|
|
1417
|
+
* @type {DashboardExportSettings}
|
|
1418
|
+
* @memberof DashboardTabularExportRequestV2
|
|
1419
|
+
*/
|
|
1420
|
+
settings?: DashboardExportSettings;
|
|
1421
|
+
}
|
|
1422
|
+
export declare const DashboardTabularExportRequestV2FormatEnum: {
|
|
1423
|
+
readonly XLSX: "XLSX";
|
|
1424
|
+
};
|
|
1425
|
+
export type DashboardTabularExportRequestV2FormatEnum = typeof DashboardTabularExportRequestV2FormatEnum[keyof typeof DashboardTabularExportRequestV2FormatEnum];
|
|
1101
1426
|
/**
|
|
1102
1427
|
* Data source permission assignments
|
|
1103
1428
|
* @export
|
|
@@ -1233,6 +1558,19 @@ export type DatasetWorkspaceDataFilterIdentifierTypeEnum = typeof DatasetWorkspa
|
|
|
1233
1558
|
* @export
|
|
1234
1559
|
*/
|
|
1235
1560
|
export type DateFilter = AbsoluteDateFilter | RelativeDateFilter;
|
|
1561
|
+
/**
|
|
1562
|
+
*
|
|
1563
|
+
* @export
|
|
1564
|
+
* @interface DateValue
|
|
1565
|
+
*/
|
|
1566
|
+
export interface DateValue {
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {string}
|
|
1570
|
+
* @memberof DateValue
|
|
1571
|
+
*/
|
|
1572
|
+
value: string;
|
|
1573
|
+
}
|
|
1236
1574
|
/**
|
|
1237
1575
|
*
|
|
1238
1576
|
* @export
|
|
@@ -1740,6 +2078,12 @@ export interface DeclarativeAutomation {
|
|
|
1740
2078
|
* @memberof DeclarativeAutomation
|
|
1741
2079
|
*/
|
|
1742
2080
|
slidesExports?: Array<AutomationSlidesExport>;
|
|
2081
|
+
/**
|
|
2082
|
+
*
|
|
2083
|
+
* @type {Array<AutomationDashboardTabularExport>}
|
|
2084
|
+
* @memberof DeclarativeAutomation
|
|
2085
|
+
*/
|
|
2086
|
+
dashboardTabularExports?: Array<AutomationDashboardTabularExport>;
|
|
1743
2087
|
/**
|
|
1744
2088
|
* External recipients of the automation action results.
|
|
1745
2089
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -4865,6 +5209,60 @@ export declare const IdentifierDuplicationsTypeEnum: {
|
|
|
4865
5209
|
readonly WORKSPACE_DATA_FILTER_SETTINGS: "workspaceDataFilterSettings";
|
|
4866
5210
|
};
|
|
4867
5211
|
export type IdentifierDuplicationsTypeEnum = typeof IdentifierDuplicationsTypeEnum[keyof typeof IdentifierDuplicationsTypeEnum];
|
|
5212
|
+
/**
|
|
5213
|
+
*
|
|
5214
|
+
* @export
|
|
5215
|
+
* @interface IdentifierRef
|
|
5216
|
+
*/
|
|
5217
|
+
export interface IdentifierRef {
|
|
5218
|
+
/**
|
|
5219
|
+
*
|
|
5220
|
+
* @type {IdentifierRefIdentifier}
|
|
5221
|
+
* @memberof IdentifierRef
|
|
5222
|
+
*/
|
|
5223
|
+
identifier?: IdentifierRefIdentifier;
|
|
5224
|
+
}
|
|
5225
|
+
/**
|
|
5226
|
+
*
|
|
5227
|
+
* @export
|
|
5228
|
+
* @interface IdentifierRefIdentifier
|
|
5229
|
+
*/
|
|
5230
|
+
export interface IdentifierRefIdentifier {
|
|
5231
|
+
/**
|
|
5232
|
+
*
|
|
5233
|
+
* @type {string}
|
|
5234
|
+
* @memberof IdentifierRefIdentifier
|
|
5235
|
+
*/
|
|
5236
|
+
id: string;
|
|
5237
|
+
/**
|
|
5238
|
+
*
|
|
5239
|
+
* @type {string}
|
|
5240
|
+
* @memberof IdentifierRefIdentifier
|
|
5241
|
+
*/
|
|
5242
|
+
type: IdentifierRefIdentifierTypeEnum;
|
|
5243
|
+
}
|
|
5244
|
+
export declare const IdentifierRefIdentifierTypeEnum: {
|
|
5245
|
+
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
5246
|
+
readonly ATTRIBUTE: "attribute";
|
|
5247
|
+
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
5248
|
+
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
5249
|
+
readonly DATASET: "dataset";
|
|
5250
|
+
readonly FACT: "fact";
|
|
5251
|
+
readonly LABEL: "label";
|
|
5252
|
+
readonly METRIC: "metric";
|
|
5253
|
+
readonly USER_DATA_FILTER: "userDataFilter";
|
|
5254
|
+
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5255
|
+
readonly AUTOMATION: "automation";
|
|
5256
|
+
readonly PROMPT: "prompt";
|
|
5257
|
+
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
5258
|
+
readonly FILTER_CONTEXT: "filterContext";
|
|
5259
|
+
readonly WORKSPACE_SETTINGS: "workspaceSettings";
|
|
5260
|
+
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
5261
|
+
readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
|
|
5262
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
5263
|
+
readonly FILTER_VIEW: "filterView";
|
|
5264
|
+
};
|
|
5265
|
+
export type IdentifierRefIdentifierTypeEnum = typeof IdentifierRefIdentifierTypeEnum[keyof typeof IdentifierRefIdentifierTypeEnum];
|
|
4868
5266
|
/**
|
|
4869
5267
|
* Export request object describing the export properties and metadata for image exports.
|
|
4870
5268
|
* @export
|
|
@@ -6568,10 +6966,10 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6568
6966
|
details?: any;
|
|
6569
6967
|
/**
|
|
6570
6968
|
*
|
|
6571
|
-
* @type {
|
|
6969
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
6572
6970
|
* @memberof JsonApiAutomationOutAttributes
|
|
6573
6971
|
*/
|
|
6574
|
-
metadata?:
|
|
6972
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
6575
6973
|
/**
|
|
6576
6974
|
* Current state of the automation.
|
|
6577
6975
|
* @type {string}
|
|
@@ -6580,52 +6978,58 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6580
6978
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6581
6979
|
/**
|
|
6582
6980
|
*
|
|
6583
|
-
* @type {
|
|
6981
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
6982
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6983
|
+
*/
|
|
6984
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
6985
|
+
/**
|
|
6986
|
+
*
|
|
6987
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
6584
6988
|
* @memberof JsonApiAutomationOutAttributes
|
|
6585
6989
|
*/
|
|
6586
|
-
|
|
6990
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
6587
6991
|
/**
|
|
6588
6992
|
*
|
|
6589
|
-
* @type {
|
|
6993
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
6590
6994
|
* @memberof JsonApiAutomationOutAttributes
|
|
6591
6995
|
*/
|
|
6592
|
-
|
|
6996
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
6593
6997
|
/**
|
|
6594
6998
|
*
|
|
6595
|
-
* @type {Array<
|
|
6999
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
6596
7000
|
* @memberof JsonApiAutomationOutAttributes
|
|
6597
7001
|
*/
|
|
6598
|
-
|
|
7002
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
6599
7003
|
/**
|
|
6600
7004
|
*
|
|
6601
|
-
* @type {Array<
|
|
7005
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
6602
7006
|
* @memberof JsonApiAutomationOutAttributes
|
|
6603
7007
|
*/
|
|
6604
|
-
|
|
7008
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
6605
7009
|
/**
|
|
6606
7010
|
*
|
|
6607
|
-
* @type {Array<
|
|
7011
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
6608
7012
|
* @memberof JsonApiAutomationOutAttributes
|
|
6609
7013
|
*/
|
|
6610
|
-
|
|
7014
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
6611
7015
|
/**
|
|
6612
7016
|
*
|
|
6613
|
-
* @type {Array<
|
|
7017
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
6614
7018
|
* @memberof JsonApiAutomationOutAttributes
|
|
6615
7019
|
*/
|
|
6616
|
-
|
|
7020
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
6617
7021
|
/**
|
|
6618
7022
|
*
|
|
6619
|
-
* @type {Array<
|
|
7023
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
6620
7024
|
* @memberof JsonApiAutomationOutAttributes
|
|
6621
7025
|
*/
|
|
6622
|
-
|
|
7026
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
6623
7027
|
/**
|
|
6624
7028
|
* External recipients of the automation action results.
|
|
6625
|
-
* @type {Array<
|
|
7029
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
6626
7030
|
* @memberof JsonApiAutomationOutAttributes
|
|
6627
7031
|
*/
|
|
6628
|
-
externalRecipients?: Array<
|
|
7032
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
6629
7033
|
/**
|
|
6630
7034
|
*
|
|
6631
7035
|
* @type {string}
|
|
@@ -6647,532 +7051,564 @@ export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOu
|
|
|
6647
7051
|
/**
|
|
6648
7052
|
*
|
|
6649
7053
|
* @export
|
|
6650
|
-
* @interface
|
|
7054
|
+
* @interface JsonApiAutomationOutDocument
|
|
7055
|
+
*/
|
|
7056
|
+
export interface JsonApiAutomationOutDocument {
|
|
7057
|
+
/**
|
|
7058
|
+
*
|
|
7059
|
+
* @type {JsonApiAutomationOut}
|
|
7060
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7061
|
+
*/
|
|
7062
|
+
data: JsonApiAutomationOut;
|
|
7063
|
+
/**
|
|
7064
|
+
*
|
|
7065
|
+
* @type {ObjectLinks}
|
|
7066
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7067
|
+
*/
|
|
7068
|
+
links?: ObjectLinks;
|
|
7069
|
+
/**
|
|
7070
|
+
* Included resources
|
|
7071
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7072
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7073
|
+
*/
|
|
7074
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7075
|
+
}
|
|
7076
|
+
/**
|
|
7077
|
+
* @type JsonApiAutomationOutIncludes
|
|
7078
|
+
* @export
|
|
7079
|
+
*/
|
|
7080
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
7081
|
+
/**
|
|
7082
|
+
* A JSON:API document with a list of resources
|
|
7083
|
+
* @export
|
|
7084
|
+
* @interface JsonApiAutomationOutList
|
|
7085
|
+
*/
|
|
7086
|
+
export interface JsonApiAutomationOutList {
|
|
7087
|
+
/**
|
|
7088
|
+
*
|
|
7089
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
7090
|
+
* @memberof JsonApiAutomationOutList
|
|
7091
|
+
*/
|
|
7092
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
7093
|
+
/**
|
|
7094
|
+
*
|
|
7095
|
+
* @type {ListLinks}
|
|
7096
|
+
* @memberof JsonApiAutomationOutList
|
|
7097
|
+
*/
|
|
7098
|
+
links?: ListLinks;
|
|
7099
|
+
/**
|
|
7100
|
+
*
|
|
7101
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7102
|
+
* @memberof JsonApiAutomationOutList
|
|
7103
|
+
*/
|
|
7104
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7105
|
+
/**
|
|
7106
|
+
* Included resources
|
|
7107
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
7108
|
+
* @memberof JsonApiAutomationOutList
|
|
7109
|
+
*/
|
|
7110
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7111
|
+
}
|
|
7112
|
+
/**
|
|
7113
|
+
*
|
|
7114
|
+
* @export
|
|
7115
|
+
* @interface JsonApiAutomationOutRelationships
|
|
7116
|
+
*/
|
|
7117
|
+
export interface JsonApiAutomationOutRelationships {
|
|
7118
|
+
/**
|
|
7119
|
+
*
|
|
7120
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
7121
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7122
|
+
*/
|
|
7123
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
7124
|
+
/**
|
|
7125
|
+
*
|
|
7126
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
7127
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7128
|
+
*/
|
|
7129
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
7130
|
+
/**
|
|
7131
|
+
*
|
|
7132
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7133
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7134
|
+
*/
|
|
7135
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7136
|
+
/**
|
|
7137
|
+
*
|
|
7138
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
7139
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7140
|
+
*/
|
|
7141
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
7142
|
+
/**
|
|
7143
|
+
*
|
|
7144
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
7145
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7146
|
+
*/
|
|
7147
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
7148
|
+
/**
|
|
7149
|
+
*
|
|
7150
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
7151
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7152
|
+
*/
|
|
7153
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
7154
|
+
}
|
|
7155
|
+
/**
|
|
7156
|
+
*
|
|
7157
|
+
* @export
|
|
7158
|
+
* @interface JsonApiAutomationOutWithLinks
|
|
7159
|
+
*/
|
|
7160
|
+
export interface JsonApiAutomationOutWithLinks {
|
|
7161
|
+
/**
|
|
7162
|
+
* Object type
|
|
7163
|
+
* @type {string}
|
|
7164
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7165
|
+
*/
|
|
7166
|
+
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
7167
|
+
/**
|
|
7168
|
+
* API identifier of an object
|
|
7169
|
+
* @type {string}
|
|
7170
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7171
|
+
*/
|
|
7172
|
+
id: string;
|
|
7173
|
+
/**
|
|
7174
|
+
*
|
|
7175
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
7176
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7177
|
+
*/
|
|
7178
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7179
|
+
/**
|
|
7180
|
+
*
|
|
7181
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
7182
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7183
|
+
*/
|
|
7184
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
7185
|
+
/**
|
|
7186
|
+
*
|
|
7187
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
7188
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7189
|
+
*/
|
|
7190
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
7191
|
+
/**
|
|
7192
|
+
*
|
|
7193
|
+
* @type {ObjectLinks}
|
|
7194
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
7195
|
+
*/
|
|
7196
|
+
links?: ObjectLinks;
|
|
7197
|
+
}
|
|
7198
|
+
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
7199
|
+
readonly AUTOMATION: "automation";
|
|
7200
|
+
};
|
|
7201
|
+
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
7202
|
+
/**
|
|
7203
|
+
* JSON:API representation of patching automation entity.
|
|
7204
|
+
* @export
|
|
7205
|
+
* @interface JsonApiAutomationPatch
|
|
7206
|
+
*/
|
|
7207
|
+
export interface JsonApiAutomationPatch {
|
|
7208
|
+
/**
|
|
7209
|
+
* Object type
|
|
7210
|
+
* @type {string}
|
|
7211
|
+
* @memberof JsonApiAutomationPatch
|
|
7212
|
+
*/
|
|
7213
|
+
type: JsonApiAutomationPatchTypeEnum;
|
|
7214
|
+
/**
|
|
7215
|
+
* API identifier of an object
|
|
7216
|
+
* @type {string}
|
|
7217
|
+
* @memberof JsonApiAutomationPatch
|
|
7218
|
+
*/
|
|
7219
|
+
id: string;
|
|
7220
|
+
/**
|
|
7221
|
+
*
|
|
7222
|
+
* @type {JsonApiAutomationPatchAttributes}
|
|
7223
|
+
* @memberof JsonApiAutomationPatch
|
|
7224
|
+
*/
|
|
7225
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
7226
|
+
/**
|
|
7227
|
+
*
|
|
7228
|
+
* @type {JsonApiAutomationPatchRelationships}
|
|
7229
|
+
* @memberof JsonApiAutomationPatch
|
|
7230
|
+
*/
|
|
7231
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
7232
|
+
}
|
|
7233
|
+
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7234
|
+
readonly AUTOMATION: "automation";
|
|
7235
|
+
};
|
|
7236
|
+
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7237
|
+
/**
|
|
7238
|
+
*
|
|
7239
|
+
* @export
|
|
7240
|
+
* @interface JsonApiAutomationPatchAttributes
|
|
6651
7241
|
*/
|
|
6652
|
-
export interface
|
|
7242
|
+
export interface JsonApiAutomationPatchAttributes {
|
|
7243
|
+
/**
|
|
7244
|
+
*
|
|
7245
|
+
* @type {string}
|
|
7246
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7247
|
+
*/
|
|
7248
|
+
title?: string;
|
|
7249
|
+
/**
|
|
7250
|
+
*
|
|
7251
|
+
* @type {string}
|
|
7252
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7253
|
+
*/
|
|
7254
|
+
description?: string;
|
|
7255
|
+
/**
|
|
7256
|
+
*
|
|
7257
|
+
* @type {Array<string>}
|
|
7258
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7259
|
+
*/
|
|
7260
|
+
tags?: Array<string>;
|
|
7261
|
+
/**
|
|
7262
|
+
*
|
|
7263
|
+
* @type {boolean}
|
|
7264
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7265
|
+
*/
|
|
7266
|
+
areRelationsValid?: boolean;
|
|
7267
|
+
/**
|
|
7268
|
+
* Additional details to be included in the automated message.
|
|
7269
|
+
* @type {any}
|
|
7270
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7271
|
+
*/
|
|
7272
|
+
details?: any;
|
|
7273
|
+
/**
|
|
7274
|
+
*
|
|
7275
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
7276
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7277
|
+
*/
|
|
7278
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
7279
|
+
/**
|
|
7280
|
+
* Current state of the automation.
|
|
7281
|
+
* @type {string}
|
|
7282
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7283
|
+
*/
|
|
7284
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
7285
|
+
/**
|
|
7286
|
+
*
|
|
7287
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
7288
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7289
|
+
*/
|
|
7290
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
7291
|
+
/**
|
|
7292
|
+
*
|
|
7293
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
7294
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7295
|
+
*/
|
|
7296
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
7297
|
+
/**
|
|
7298
|
+
*
|
|
7299
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
7300
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7301
|
+
*/
|
|
7302
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
7303
|
+
/**
|
|
7304
|
+
*
|
|
7305
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
7306
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7307
|
+
*/
|
|
7308
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
7309
|
+
/**
|
|
7310
|
+
*
|
|
7311
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
7312
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7313
|
+
*/
|
|
7314
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
7315
|
+
/**
|
|
7316
|
+
*
|
|
7317
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
7318
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7319
|
+
*/
|
|
7320
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
7321
|
+
/**
|
|
7322
|
+
*
|
|
7323
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
7324
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7325
|
+
*/
|
|
7326
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
7327
|
+
/**
|
|
7328
|
+
*
|
|
7329
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
7330
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7331
|
+
*/
|
|
7332
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
7333
|
+
/**
|
|
7334
|
+
* External recipients of the automation action results.
|
|
7335
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
7336
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
7337
|
+
*/
|
|
7338
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
7339
|
+
}
|
|
7340
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
7341
|
+
readonly ACTIVE: "ACTIVE";
|
|
7342
|
+
readonly PAUSED: "PAUSED";
|
|
7343
|
+
};
|
|
7344
|
+
export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
7345
|
+
/**
|
|
7346
|
+
*
|
|
7347
|
+
* @export
|
|
7348
|
+
* @interface JsonApiAutomationPatchAttributesAlert
|
|
7349
|
+
*/
|
|
7350
|
+
export interface JsonApiAutomationPatchAttributesAlert {
|
|
6653
7351
|
/**
|
|
6654
7352
|
*
|
|
6655
7353
|
* @type {AlertAfm}
|
|
6656
|
-
* @memberof
|
|
7354
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6657
7355
|
*/
|
|
6658
7356
|
execution: AlertAfm;
|
|
6659
7357
|
/**
|
|
6660
7358
|
*
|
|
6661
7359
|
* @type {AlertCondition}
|
|
6662
|
-
* @memberof
|
|
7360
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6663
7361
|
*/
|
|
6664
7362
|
condition: AlertCondition;
|
|
6665
7363
|
/**
|
|
6666
7364
|
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
6667
7365
|
* @type {string}
|
|
6668
|
-
* @memberof
|
|
7366
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6669
7367
|
*/
|
|
6670
|
-
trigger?:
|
|
7368
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
6671
7369
|
}
|
|
6672
|
-
export declare const
|
|
7370
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
6673
7371
|
readonly ALWAYS: "ALWAYS";
|
|
6674
7372
|
readonly ONCE: "ONCE";
|
|
6675
7373
|
};
|
|
6676
|
-
export type
|
|
7374
|
+
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
7375
|
+
/**
|
|
7376
|
+
*
|
|
7377
|
+
* @export
|
|
7378
|
+
* @interface JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
7379
|
+
*/
|
|
7380
|
+
export interface JsonApiAutomationPatchAttributesDashboardTabularExports {
|
|
7381
|
+
/**
|
|
7382
|
+
*
|
|
7383
|
+
* @type {DashboardTabularExportRequestV2}
|
|
7384
|
+
* @memberof JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
7385
|
+
*/
|
|
7386
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
7387
|
+
}
|
|
6677
7388
|
/**
|
|
6678
7389
|
*
|
|
6679
7390
|
* @export
|
|
6680
|
-
* @interface
|
|
7391
|
+
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
6681
7392
|
*/
|
|
6682
|
-
export interface
|
|
7393
|
+
export interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
6683
7394
|
/**
|
|
6684
7395
|
* E-mail address to send notifications from.
|
|
6685
7396
|
* @type {string}
|
|
6686
|
-
* @memberof
|
|
7397
|
+
* @memberof JsonApiAutomationPatchAttributesExternalRecipients
|
|
6687
7398
|
*/
|
|
6688
7399
|
email: string;
|
|
6689
7400
|
}
|
|
6690
7401
|
/**
|
|
6691
7402
|
*
|
|
6692
7403
|
* @export
|
|
6693
|
-
* @interface
|
|
7404
|
+
* @interface JsonApiAutomationPatchAttributesImageExports
|
|
6694
7405
|
*/
|
|
6695
|
-
export interface
|
|
7406
|
+
export interface JsonApiAutomationPatchAttributesImageExports {
|
|
6696
7407
|
/**
|
|
6697
7408
|
*
|
|
6698
7409
|
* @type {ImageExportRequest}
|
|
6699
|
-
* @memberof
|
|
7410
|
+
* @memberof JsonApiAutomationPatchAttributesImageExports
|
|
6700
7411
|
*/
|
|
6701
7412
|
requestPayload: ImageExportRequest;
|
|
6702
7413
|
}
|
|
6703
7414
|
/**
|
|
6704
7415
|
* Additional information for the automation.
|
|
6705
7416
|
* @export
|
|
6706
|
-
* @interface
|
|
7417
|
+
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
6707
7418
|
*/
|
|
6708
|
-
export interface
|
|
7419
|
+
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
6709
7420
|
/**
|
|
6710
7421
|
*
|
|
6711
7422
|
* @type {string}
|
|
6712
|
-
* @memberof
|
|
7423
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
6713
7424
|
*/
|
|
6714
7425
|
widget?: string;
|
|
6715
7426
|
/**
|
|
6716
7427
|
*
|
|
6717
7428
|
* @type {Array<VisibleFilter>}
|
|
6718
|
-
* @memberof
|
|
7429
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
6719
7430
|
*/
|
|
6720
7431
|
visibleFilters?: Array<VisibleFilter>;
|
|
6721
7432
|
}
|
|
6722
7433
|
/**
|
|
6723
7434
|
*
|
|
6724
7435
|
* @export
|
|
6725
|
-
* @interface
|
|
7436
|
+
* @interface JsonApiAutomationPatchAttributesRawExports
|
|
6726
7437
|
*/
|
|
6727
|
-
export interface
|
|
7438
|
+
export interface JsonApiAutomationPatchAttributesRawExports {
|
|
6728
7439
|
/**
|
|
6729
7440
|
*
|
|
6730
7441
|
* @type {RawExportRequest}
|
|
6731
|
-
* @memberof
|
|
7442
|
+
* @memberof JsonApiAutomationPatchAttributesRawExports
|
|
6732
7443
|
*/
|
|
6733
7444
|
requestPayload: RawExportRequest;
|
|
6734
7445
|
}
|
|
6735
7446
|
/**
|
|
6736
7447
|
*
|
|
6737
7448
|
* @export
|
|
6738
|
-
* @interface
|
|
7449
|
+
* @interface JsonApiAutomationPatchAttributesSchedule
|
|
6739
7450
|
*/
|
|
6740
|
-
export interface
|
|
7451
|
+
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
6741
7452
|
/**
|
|
6742
7453
|
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
6743
7454
|
* @type {string}
|
|
6744
|
-
* @memberof
|
|
7455
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6745
7456
|
*/
|
|
6746
7457
|
cron: string;
|
|
6747
7458
|
/**
|
|
6748
7459
|
* Human-readable description of the cron expression.
|
|
6749
7460
|
* @type {string}
|
|
6750
|
-
* @memberof
|
|
7461
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6751
7462
|
*/
|
|
6752
7463
|
cronDescription?: string;
|
|
6753
7464
|
/**
|
|
6754
7465
|
* Timezone in which the schedule is defined.
|
|
6755
7466
|
* @type {string}
|
|
6756
|
-
* @memberof
|
|
7467
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6757
7468
|
*/
|
|
6758
7469
|
timezone: string;
|
|
6759
7470
|
/**
|
|
6760
7471
|
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6761
7472
|
* @type {string}
|
|
6762
|
-
* @memberof
|
|
7473
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6763
7474
|
*/
|
|
6764
7475
|
firstRun?: string;
|
|
6765
7476
|
}
|
|
6766
7477
|
/**
|
|
6767
7478
|
*
|
|
6768
7479
|
* @export
|
|
6769
|
-
* @interface
|
|
7480
|
+
* @interface JsonApiAutomationPatchAttributesSlidesExports
|
|
6770
7481
|
*/
|
|
6771
|
-
export interface
|
|
7482
|
+
export interface JsonApiAutomationPatchAttributesSlidesExports {
|
|
6772
7483
|
/**
|
|
6773
7484
|
*
|
|
6774
7485
|
* @type {SlidesExportRequest}
|
|
6775
|
-
* @memberof
|
|
7486
|
+
* @memberof JsonApiAutomationPatchAttributesSlidesExports
|
|
6776
7487
|
*/
|
|
6777
7488
|
requestPayload: SlidesExportRequest;
|
|
6778
7489
|
}
|
|
6779
7490
|
/**
|
|
6780
7491
|
*
|
|
6781
7492
|
* @export
|
|
6782
|
-
* @interface
|
|
7493
|
+
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
6783
7494
|
*/
|
|
6784
|
-
export interface
|
|
7495
|
+
export interface JsonApiAutomationPatchAttributesTabularExports {
|
|
6785
7496
|
/**
|
|
6786
7497
|
*
|
|
6787
7498
|
* @type {TabularExportRequest}
|
|
6788
|
-
* @memberof
|
|
7499
|
+
* @memberof JsonApiAutomationPatchAttributesTabularExports
|
|
6789
7500
|
*/
|
|
6790
7501
|
requestPayload: TabularExportRequest;
|
|
6791
7502
|
}
|
|
6792
7503
|
/**
|
|
6793
7504
|
*
|
|
6794
7505
|
* @export
|
|
6795
|
-
* @interface
|
|
7506
|
+
* @interface JsonApiAutomationPatchAttributesVisualExports
|
|
6796
7507
|
*/
|
|
6797
|
-
export interface
|
|
7508
|
+
export interface JsonApiAutomationPatchAttributesVisualExports {
|
|
6798
7509
|
/**
|
|
6799
7510
|
*
|
|
6800
7511
|
* @type {VisualExportRequest}
|
|
6801
|
-
* @memberof
|
|
7512
|
+
* @memberof JsonApiAutomationPatchAttributesVisualExports
|
|
6802
7513
|
*/
|
|
6803
7514
|
requestPayload: VisualExportRequest;
|
|
6804
7515
|
}
|
|
6805
7516
|
/**
|
|
6806
7517
|
*
|
|
6807
7518
|
* @export
|
|
6808
|
-
* @interface
|
|
7519
|
+
* @interface JsonApiAutomationPatchDocument
|
|
6809
7520
|
*/
|
|
6810
|
-
export interface
|
|
6811
|
-
/**
|
|
6812
|
-
*
|
|
6813
|
-
* @type {JsonApiAutomationOut}
|
|
6814
|
-
* @memberof JsonApiAutomationOutDocument
|
|
6815
|
-
*/
|
|
6816
|
-
data: JsonApiAutomationOut;
|
|
7521
|
+
export interface JsonApiAutomationPatchDocument {
|
|
6817
7522
|
/**
|
|
6818
7523
|
*
|
|
6819
|
-
* @type {
|
|
6820
|
-
* @memberof
|
|
6821
|
-
*/
|
|
6822
|
-
links?: ObjectLinks;
|
|
6823
|
-
/**
|
|
6824
|
-
* Included resources
|
|
6825
|
-
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6826
|
-
* @memberof JsonApiAutomationOutDocument
|
|
7524
|
+
* @type {JsonApiAutomationPatch}
|
|
7525
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
6827
7526
|
*/
|
|
6828
|
-
|
|
7527
|
+
data: JsonApiAutomationPatch;
|
|
6829
7528
|
}
|
|
6830
7529
|
/**
|
|
6831
|
-
*
|
|
6832
|
-
* @export
|
|
6833
|
-
*/
|
|
6834
|
-
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
6835
|
-
/**
|
|
6836
|
-
* A JSON:API document with a list of resources
|
|
7530
|
+
*
|
|
6837
7531
|
* @export
|
|
6838
|
-
* @interface
|
|
7532
|
+
* @interface JsonApiAutomationPatchRelationships
|
|
6839
7533
|
*/
|
|
6840
|
-
export interface
|
|
7534
|
+
export interface JsonApiAutomationPatchRelationships {
|
|
6841
7535
|
/**
|
|
6842
7536
|
*
|
|
6843
|
-
* @type {
|
|
6844
|
-
* @memberof
|
|
7537
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
7538
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6845
7539
|
*/
|
|
6846
|
-
|
|
7540
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
6847
7541
|
/**
|
|
6848
7542
|
*
|
|
6849
|
-
* @type {
|
|
6850
|
-
* @memberof
|
|
7543
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
7544
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6851
7545
|
*/
|
|
6852
|
-
|
|
7546
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6853
7547
|
/**
|
|
6854
7548
|
*
|
|
6855
|
-
* @type {
|
|
6856
|
-
* @memberof
|
|
7549
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
7550
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6857
7551
|
*/
|
|
6858
|
-
|
|
7552
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
6859
7553
|
/**
|
|
6860
|
-
*
|
|
6861
|
-
* @type {
|
|
6862
|
-
* @memberof
|
|
7554
|
+
*
|
|
7555
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
7556
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6863
7557
|
*/
|
|
6864
|
-
|
|
7558
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
6865
7559
|
}
|
|
6866
7560
|
/**
|
|
6867
7561
|
*
|
|
6868
7562
|
* @export
|
|
6869
|
-
* @interface
|
|
7563
|
+
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
6870
7564
|
*/
|
|
6871
|
-
export interface
|
|
7565
|
+
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
6872
7566
|
/**
|
|
6873
7567
|
*
|
|
6874
|
-
* @type {
|
|
6875
|
-
* @memberof
|
|
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;
|
|
6896
|
-
/**
|
|
6897
|
-
*
|
|
6898
|
-
* @type {JsonApiAutomationOutRelationshipsExportDefinitions}
|
|
6899
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6900
|
-
*/
|
|
6901
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
6902
|
-
/**
|
|
6903
|
-
*
|
|
6904
|
-
* @type {JsonApiAutomationOutRelationshipsRecipients}
|
|
6905
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
7568
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
7569
|
+
* @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
6906
7570
|
*/
|
|
6907
|
-
|
|
7571
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
6908
7572
|
}
|
|
6909
7573
|
/**
|
|
6910
7574
|
*
|
|
6911
7575
|
* @export
|
|
6912
|
-
* @interface
|
|
7576
|
+
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
6913
7577
|
*/
|
|
6914
|
-
export interface
|
|
7578
|
+
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
6915
7579
|
/**
|
|
6916
7580
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6917
7581
|
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6918
|
-
* @memberof
|
|
7582
|
+
* @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
6919
7583
|
*/
|
|
6920
7584
|
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6921
7585
|
}
|
|
6922
7586
|
/**
|
|
6923
7587
|
*
|
|
6924
7588
|
* @export
|
|
6925
|
-
* @interface
|
|
7589
|
+
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
6926
7590
|
*/
|
|
6927
|
-
export interface
|
|
7591
|
+
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
6928
7592
|
/**
|
|
6929
7593
|
*
|
|
6930
7594
|
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6931
|
-
* @memberof
|
|
7595
|
+
* @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
6932
7596
|
*/
|
|
6933
7597
|
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6934
7598
|
}
|
|
6935
7599
|
/**
|
|
6936
7600
|
*
|
|
6937
7601
|
* @export
|
|
6938
|
-
* @interface
|
|
7602
|
+
* @interface JsonApiAutomationPatchRelationshipsRecipients
|
|
6939
7603
|
*/
|
|
6940
|
-
export interface
|
|
7604
|
+
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
6941
7605
|
/**
|
|
6942
7606
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6943
7607
|
* @type {Array<JsonApiUserLinkage>}
|
|
6944
|
-
* @memberof
|
|
7608
|
+
* @memberof JsonApiAutomationPatchRelationshipsRecipients
|
|
6945
7609
|
*/
|
|
6946
7610
|
data: Array<JsonApiUserLinkage>;
|
|
6947
7611
|
}
|
|
6948
|
-
/**
|
|
6949
|
-
*
|
|
6950
|
-
* @export
|
|
6951
|
-
* @interface JsonApiAutomationOutWithLinks
|
|
6952
|
-
*/
|
|
6953
|
-
export interface JsonApiAutomationOutWithLinks {
|
|
6954
|
-
/**
|
|
6955
|
-
* Object type
|
|
6956
|
-
* @type {string}
|
|
6957
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6958
|
-
*/
|
|
6959
|
-
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
6960
|
-
/**
|
|
6961
|
-
* API identifier of an object
|
|
6962
|
-
* @type {string}
|
|
6963
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6964
|
-
*/
|
|
6965
|
-
id: string;
|
|
6966
|
-
/**
|
|
6967
|
-
*
|
|
6968
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
6969
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
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
|
|
6988
|
-
*/
|
|
6989
|
-
links?: ObjectLinks;
|
|
6990
|
-
}
|
|
6991
|
-
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
6992
|
-
readonly AUTOMATION: "automation";
|
|
6993
|
-
};
|
|
6994
|
-
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
6995
|
-
/**
|
|
6996
|
-
* JSON:API representation of patching automation entity.
|
|
6997
|
-
* @export
|
|
6998
|
-
* @interface JsonApiAutomationPatch
|
|
6999
|
-
*/
|
|
7000
|
-
export interface JsonApiAutomationPatch {
|
|
7001
|
-
/**
|
|
7002
|
-
* Object type
|
|
7003
|
-
* @type {string}
|
|
7004
|
-
* @memberof JsonApiAutomationPatch
|
|
7005
|
-
*/
|
|
7006
|
-
type: JsonApiAutomationPatchTypeEnum;
|
|
7007
|
-
/**
|
|
7008
|
-
* API identifier of an object
|
|
7009
|
-
* @type {string}
|
|
7010
|
-
* @memberof JsonApiAutomationPatch
|
|
7011
|
-
*/
|
|
7012
|
-
id: string;
|
|
7013
|
-
/**
|
|
7014
|
-
*
|
|
7015
|
-
* @type {JsonApiAutomationPatchAttributes}
|
|
7016
|
-
* @memberof JsonApiAutomationPatch
|
|
7017
|
-
*/
|
|
7018
|
-
attributes?: JsonApiAutomationPatchAttributes;
|
|
7019
|
-
/**
|
|
7020
|
-
*
|
|
7021
|
-
* @type {JsonApiAutomationPatchRelationships}
|
|
7022
|
-
* @memberof JsonApiAutomationPatch
|
|
7023
|
-
*/
|
|
7024
|
-
relationships?: JsonApiAutomationPatchRelationships;
|
|
7025
|
-
}
|
|
7026
|
-
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
7027
|
-
readonly AUTOMATION: "automation";
|
|
7028
|
-
};
|
|
7029
|
-
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
7030
|
-
/**
|
|
7031
|
-
*
|
|
7032
|
-
* @export
|
|
7033
|
-
* @interface JsonApiAutomationPatchAttributes
|
|
7034
|
-
*/
|
|
7035
|
-
export interface JsonApiAutomationPatchAttributes {
|
|
7036
|
-
/**
|
|
7037
|
-
*
|
|
7038
|
-
* @type {string}
|
|
7039
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7040
|
-
*/
|
|
7041
|
-
title?: string;
|
|
7042
|
-
/**
|
|
7043
|
-
*
|
|
7044
|
-
* @type {string}
|
|
7045
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7046
|
-
*/
|
|
7047
|
-
description?: string;
|
|
7048
|
-
/**
|
|
7049
|
-
*
|
|
7050
|
-
* @type {Array<string>}
|
|
7051
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7052
|
-
*/
|
|
7053
|
-
tags?: Array<string>;
|
|
7054
|
-
/**
|
|
7055
|
-
*
|
|
7056
|
-
* @type {boolean}
|
|
7057
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7058
|
-
*/
|
|
7059
|
-
areRelationsValid?: boolean;
|
|
7060
|
-
/**
|
|
7061
|
-
* Additional details to be included in the automated message.
|
|
7062
|
-
* @type {any}
|
|
7063
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7064
|
-
*/
|
|
7065
|
-
details?: any;
|
|
7066
|
-
/**
|
|
7067
|
-
*
|
|
7068
|
-
* @type {JsonApiAutomationOutAttributesMetadata}
|
|
7069
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7070
|
-
*/
|
|
7071
|
-
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
7072
|
-
/**
|
|
7073
|
-
* Current state of the automation.
|
|
7074
|
-
* @type {string}
|
|
7075
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7076
|
-
*/
|
|
7077
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
7078
|
-
/**
|
|
7079
|
-
*
|
|
7080
|
-
* @type {JsonApiAutomationOutAttributesSchedule}
|
|
7081
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7082
|
-
*/
|
|
7083
|
-
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
7084
|
-
/**
|
|
7085
|
-
*
|
|
7086
|
-
* @type {JsonApiAutomationOutAttributesAlert}
|
|
7087
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7088
|
-
*/
|
|
7089
|
-
alert?: JsonApiAutomationOutAttributesAlert;
|
|
7090
|
-
/**
|
|
7091
|
-
*
|
|
7092
|
-
* @type {Array<JsonApiAutomationOutAttributesTabularExports>}
|
|
7093
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7094
|
-
*/
|
|
7095
|
-
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
|
|
7096
|
-
/**
|
|
7097
|
-
*
|
|
7098
|
-
* @type {Array<JsonApiAutomationOutAttributesVisualExports>}
|
|
7099
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7100
|
-
*/
|
|
7101
|
-
visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
|
|
7102
|
-
/**
|
|
7103
|
-
*
|
|
7104
|
-
* @type {Array<JsonApiAutomationOutAttributesImageExports>}
|
|
7105
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7106
|
-
*/
|
|
7107
|
-
imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
|
|
7108
|
-
/**
|
|
7109
|
-
*
|
|
7110
|
-
* @type {Array<JsonApiAutomationOutAttributesRawExports>}
|
|
7111
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7112
|
-
*/
|
|
7113
|
-
rawExports?: Array<JsonApiAutomationOutAttributesRawExports>;
|
|
7114
|
-
/**
|
|
7115
|
-
*
|
|
7116
|
-
* @type {Array<JsonApiAutomationOutAttributesSlidesExports>}
|
|
7117
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7118
|
-
*/
|
|
7119
|
-
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExports>;
|
|
7120
|
-
/**
|
|
7121
|
-
* External recipients of the automation action results.
|
|
7122
|
-
* @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
|
|
7123
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
7124
|
-
*/
|
|
7125
|
-
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
|
|
7126
|
-
}
|
|
7127
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
7128
|
-
readonly ACTIVE: "ACTIVE";
|
|
7129
|
-
readonly PAUSED: "PAUSED";
|
|
7130
|
-
};
|
|
7131
|
-
export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
7132
|
-
/**
|
|
7133
|
-
*
|
|
7134
|
-
* @export
|
|
7135
|
-
* @interface JsonApiAutomationPatchDocument
|
|
7136
|
-
*/
|
|
7137
|
-
export interface JsonApiAutomationPatchDocument {
|
|
7138
|
-
/**
|
|
7139
|
-
*
|
|
7140
|
-
* @type {JsonApiAutomationPatch}
|
|
7141
|
-
* @memberof JsonApiAutomationPatchDocument
|
|
7142
|
-
*/
|
|
7143
|
-
data: JsonApiAutomationPatch;
|
|
7144
|
-
}
|
|
7145
|
-
/**
|
|
7146
|
-
*
|
|
7147
|
-
* @export
|
|
7148
|
-
* @interface JsonApiAutomationPatchRelationships
|
|
7149
|
-
*/
|
|
7150
|
-
export interface JsonApiAutomationPatchRelationships {
|
|
7151
|
-
/**
|
|
7152
|
-
*
|
|
7153
|
-
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
7154
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
7155
|
-
*/
|
|
7156
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
7157
|
-
/**
|
|
7158
|
-
*
|
|
7159
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
7160
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
7161
|
-
*/
|
|
7162
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
7163
|
-
/**
|
|
7164
|
-
*
|
|
7165
|
-
* @type {JsonApiAutomationOutRelationshipsExportDefinitions}
|
|
7166
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
7167
|
-
*/
|
|
7168
|
-
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
7169
|
-
/**
|
|
7170
|
-
*
|
|
7171
|
-
* @type {JsonApiAutomationOutRelationshipsRecipients}
|
|
7172
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
7173
|
-
*/
|
|
7174
|
-
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
7175
|
-
}
|
|
7176
7612
|
/**
|
|
7177
7613
|
* @type JsonApiAutomationToOneLinkage
|
|
7178
7614
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -7429,10 +7865,10 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
7429
7865
|
id: string;
|
|
7430
7866
|
/**
|
|
7431
7867
|
*
|
|
7432
|
-
* @type {
|
|
7868
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
7433
7869
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
7434
7870
|
*/
|
|
7435
|
-
attributes?:
|
|
7871
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
7436
7872
|
}
|
|
7437
7873
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
7438
7874
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -7471,15 +7907,34 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
7471
7907
|
id: string;
|
|
7472
7908
|
/**
|
|
7473
7909
|
*
|
|
7474
|
-
* @type {
|
|
7910
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
7475
7911
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
7476
7912
|
*/
|
|
7477
|
-
attributes?:
|
|
7913
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
7478
7914
|
}
|
|
7479
7915
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
7480
7916
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7481
7917
|
};
|
|
7482
7918
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = typeof JsonApiCookieSecurityConfigurationOutTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
7919
|
+
/**
|
|
7920
|
+
*
|
|
7921
|
+
* @export
|
|
7922
|
+
* @interface JsonApiCookieSecurityConfigurationOutAttributes
|
|
7923
|
+
*/
|
|
7924
|
+
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
7925
|
+
/**
|
|
7926
|
+
*
|
|
7927
|
+
* @type {string}
|
|
7928
|
+
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7929
|
+
*/
|
|
7930
|
+
lastRotation?: string;
|
|
7931
|
+
/**
|
|
7932
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7933
|
+
* @type {string}
|
|
7934
|
+
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7935
|
+
*/
|
|
7936
|
+
rotationInterval?: string;
|
|
7937
|
+
}
|
|
7483
7938
|
/**
|
|
7484
7939
|
*
|
|
7485
7940
|
* @export
|
|
@@ -7519,34 +7974,15 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
7519
7974
|
id: string;
|
|
7520
7975
|
/**
|
|
7521
7976
|
*
|
|
7522
|
-
* @type {
|
|
7977
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
7523
7978
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
7524
7979
|
*/
|
|
7525
|
-
attributes?:
|
|
7980
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
7526
7981
|
}
|
|
7527
7982
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
7528
7983
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7529
7984
|
};
|
|
7530
7985
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = typeof JsonApiCookieSecurityConfigurationPatchTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
7531
|
-
/**
|
|
7532
|
-
*
|
|
7533
|
-
* @export
|
|
7534
|
-
* @interface JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7535
|
-
*/
|
|
7536
|
-
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
7537
|
-
/**
|
|
7538
|
-
*
|
|
7539
|
-
* @type {string}
|
|
7540
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7541
|
-
*/
|
|
7542
|
-
lastRotation?: string;
|
|
7543
|
-
/**
|
|
7544
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7545
|
-
* @type {string}
|
|
7546
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7547
|
-
*/
|
|
7548
|
-
rotationInterval?: string;
|
|
7549
|
-
}
|
|
7550
7986
|
/**
|
|
7551
7987
|
*
|
|
7552
7988
|
* @export
|
|
@@ -10047,10 +10483,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10047
10483
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10048
10484
|
/**
|
|
10049
10485
|
*
|
|
10050
|
-
* @type {
|
|
10486
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
10051
10487
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
10052
10488
|
*/
|
|
10053
|
-
analyticalDashboard?:
|
|
10489
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
10054
10490
|
/**
|
|
10055
10491
|
*
|
|
10056
10492
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -10070,19 +10506,6 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10070
10506
|
*/
|
|
10071
10507
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
10072
10508
|
}
|
|
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
10509
|
/**
|
|
10087
10510
|
*
|
|
10088
10511
|
* @export
|
|
@@ -10255,10 +10678,10 @@ export interface JsonApiExportDefinitionPatchRelationships {
|
|
|
10255
10678
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10256
10679
|
/**
|
|
10257
10680
|
*
|
|
10258
|
-
* @type {
|
|
10681
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
10259
10682
|
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10260
10683
|
*/
|
|
10261
|
-
analyticalDashboard?:
|
|
10684
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
10262
10685
|
}
|
|
10263
10686
|
/**
|
|
10264
10687
|
* JSON:API representation of exportDefinition entity.
|
|
@@ -11319,10 +11742,10 @@ export interface JsonApiFilterViewIn {
|
|
|
11319
11742
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11320
11743
|
/**
|
|
11321
11744
|
*
|
|
11322
|
-
* @type {
|
|
11745
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11323
11746
|
* @memberof JsonApiFilterViewIn
|
|
11324
11747
|
*/
|
|
11325
|
-
relationships?:
|
|
11748
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11326
11749
|
}
|
|
11327
11750
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11328
11751
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11367,10 +11790,10 @@ export interface JsonApiFilterViewOut {
|
|
|
11367
11790
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11368
11791
|
/**
|
|
11369
11792
|
*
|
|
11370
|
-
* @type {
|
|
11793
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11371
11794
|
* @memberof JsonApiFilterViewOut
|
|
11372
11795
|
*/
|
|
11373
|
-
relationships?:
|
|
11796
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11374
11797
|
}
|
|
11375
11798
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11376
11799
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11480,25 +11903,6 @@ export interface JsonApiFilterViewOutList {
|
|
|
11480
11903
|
*/
|
|
11481
11904
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11482
11905
|
}
|
|
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
11906
|
/**
|
|
11503
11907
|
*
|
|
11504
11908
|
* @export
|
|
@@ -11525,10 +11929,10 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11525
11929
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11526
11930
|
/**
|
|
11527
11931
|
*
|
|
11528
|
-
* @type {
|
|
11932
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11529
11933
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11530
11934
|
*/
|
|
11531
|
-
relationships?:
|
|
11935
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11532
11936
|
/**
|
|
11533
11937
|
*
|
|
11534
11938
|
* @type {ObjectLinks}
|
|
@@ -11566,10 +11970,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11566
11970
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11567
11971
|
/**
|
|
11568
11972
|
*
|
|
11569
|
-
* @type {
|
|
11973
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11570
11974
|
* @memberof JsonApiFilterViewPatch
|
|
11571
11975
|
*/
|
|
11572
|
-
relationships?:
|
|
11976
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11573
11977
|
}
|
|
11574
11978
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11575
11979
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11631,6 +12035,25 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
11631
12035
|
*/
|
|
11632
12036
|
data: JsonApiFilterViewPatch;
|
|
11633
12037
|
}
|
|
12038
|
+
/**
|
|
12039
|
+
*
|
|
12040
|
+
* @export
|
|
12041
|
+
* @interface JsonApiFilterViewPatchRelationships
|
|
12042
|
+
*/
|
|
12043
|
+
export interface JsonApiFilterViewPatchRelationships {
|
|
12044
|
+
/**
|
|
12045
|
+
*
|
|
12046
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
12047
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
12048
|
+
*/
|
|
12049
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
12050
|
+
/**
|
|
12051
|
+
*
|
|
12052
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
12053
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
12054
|
+
*/
|
|
12055
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
12056
|
+
}
|
|
11634
12057
|
/**
|
|
11635
12058
|
* JSON:API representation of identityProvider entity.
|
|
11636
12059
|
* @export
|
|
@@ -12558,6 +12981,7 @@ export interface JsonApiLlmEndpointInAttributes {
|
|
|
12558
12981
|
}
|
|
12559
12982
|
export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
|
|
12560
12983
|
readonly OPENAI: "OPENAI";
|
|
12984
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12561
12985
|
};
|
|
12562
12986
|
export type JsonApiLlmEndpointInAttributesProviderEnum = typeof JsonApiLlmEndpointInAttributesProviderEnum[keyof typeof JsonApiLlmEndpointInAttributesProviderEnum];
|
|
12563
12987
|
/**
|
|
@@ -12641,6 +13065,7 @@ export interface JsonApiLlmEndpointOutAttributes {
|
|
|
12641
13065
|
}
|
|
12642
13066
|
export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
|
|
12643
13067
|
readonly OPENAI: "OPENAI";
|
|
13068
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12644
13069
|
};
|
|
12645
13070
|
export type JsonApiLlmEndpointOutAttributesProviderEnum = typeof JsonApiLlmEndpointOutAttributesProviderEnum[keyof typeof JsonApiLlmEndpointOutAttributesProviderEnum];
|
|
12646
13071
|
/**
|
|
@@ -12796,6 +13221,7 @@ export interface JsonApiLlmEndpointPatchAttributes {
|
|
|
12796
13221
|
}
|
|
12797
13222
|
export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
|
|
12798
13223
|
readonly OPENAI: "OPENAI";
|
|
13224
|
+
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12799
13225
|
};
|
|
12800
13226
|
export type JsonApiLlmEndpointPatchAttributesProviderEnum = typeof JsonApiLlmEndpointPatchAttributesProviderEnum[keyof typeof JsonApiLlmEndpointPatchAttributesProviderEnum];
|
|
12801
13227
|
/**
|
|
@@ -14086,10 +14512,10 @@ export interface JsonApiOrganizationOutRelationships {
|
|
|
14086
14512
|
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14087
14513
|
/**
|
|
14088
14514
|
*
|
|
14089
|
-
* @type {
|
|
14515
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
14090
14516
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14091
14517
|
*/
|
|
14092
|
-
identityProvider?:
|
|
14518
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
14093
14519
|
}
|
|
14094
14520
|
/**
|
|
14095
14521
|
*
|
|
@@ -14117,6 +14543,19 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
14117
14543
|
*/
|
|
14118
14544
|
data: JsonApiUserGroupToOneLinkage | null;
|
|
14119
14545
|
}
|
|
14546
|
+
/**
|
|
14547
|
+
*
|
|
14548
|
+
* @export
|
|
14549
|
+
* @interface JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
14550
|
+
*/
|
|
14551
|
+
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
14552
|
+
/**
|
|
14553
|
+
*
|
|
14554
|
+
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
14555
|
+
* @memberof JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
14556
|
+
*/
|
|
14557
|
+
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
14558
|
+
}
|
|
14120
14559
|
/**
|
|
14121
14560
|
* JSON:API representation of patching organization entity.
|
|
14122
14561
|
* @export
|
|
@@ -14255,23 +14694,10 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
14255
14694
|
export interface JsonApiOrganizationPatchRelationships {
|
|
14256
14695
|
/**
|
|
14257
14696
|
*
|
|
14258
|
-
* @type {
|
|
14697
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
14259
14698
|
* @memberof JsonApiOrganizationPatchRelationships
|
|
14260
14699
|
*/
|
|
14261
|
-
identityProvider?:
|
|
14262
|
-
}
|
|
14263
|
-
/**
|
|
14264
|
-
*
|
|
14265
|
-
* @export
|
|
14266
|
-
* @interface JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
14267
|
-
*/
|
|
14268
|
-
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
14269
|
-
/**
|
|
14270
|
-
*
|
|
14271
|
-
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
14272
|
-
* @memberof JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
14273
|
-
*/
|
|
14274
|
-
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
14700
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
14275
14701
|
}
|
|
14276
14702
|
/**
|
|
14277
14703
|
* JSON:API representation of organizationSetting entity.
|
|
@@ -14293,10 +14719,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
14293
14719
|
id: string;
|
|
14294
14720
|
/**
|
|
14295
14721
|
*
|
|
14296
|
-
* @type {
|
|
14722
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14297
14723
|
* @memberof JsonApiOrganizationSettingIn
|
|
14298
14724
|
*/
|
|
14299
|
-
attributes?:
|
|
14725
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14300
14726
|
}
|
|
14301
14727
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
14302
14728
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14335,10 +14761,10 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
14335
14761
|
id: string;
|
|
14336
14762
|
/**
|
|
14337
14763
|
*
|
|
14338
|
-
* @type {
|
|
14764
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14339
14765
|
* @memberof JsonApiOrganizationSettingOut
|
|
14340
14766
|
*/
|
|
14341
|
-
attributes?:
|
|
14767
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14342
14768
|
}
|
|
14343
14769
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14344
14770
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14408,10 +14834,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
14408
14834
|
id: string;
|
|
14409
14835
|
/**
|
|
14410
14836
|
*
|
|
14411
|
-
* @type {
|
|
14837
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14412
14838
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
14413
14839
|
*/
|
|
14414
|
-
attributes?:
|
|
14840
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14415
14841
|
/**
|
|
14416
14842
|
*
|
|
14417
14843
|
* @type {ObjectLinks}
|
|
@@ -14443,10 +14869,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
14443
14869
|
id: string;
|
|
14444
14870
|
/**
|
|
14445
14871
|
*
|
|
14446
|
-
* @type {
|
|
14872
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
14447
14873
|
* @memberof JsonApiOrganizationSettingPatch
|
|
14448
14874
|
*/
|
|
14449
|
-
attributes?:
|
|
14875
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
14450
14876
|
}
|
|
14451
14877
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
14452
14878
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -15865,10 +16291,10 @@ export interface JsonApiUserSettingIn {
|
|
|
15865
16291
|
id: string;
|
|
15866
16292
|
/**
|
|
15867
16293
|
*
|
|
15868
|
-
* @type {
|
|
16294
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
15869
16295
|
* @memberof JsonApiUserSettingIn
|
|
15870
16296
|
*/
|
|
15871
|
-
attributes?:
|
|
16297
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
15872
16298
|
}
|
|
15873
16299
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
15874
16300
|
readonly USER_SETTING: "userSetting";
|
|
@@ -15877,65 +16303,23 @@ export type JsonApiUserSettingInTypeEnum = typeof JsonApiUserSettingInTypeEnum[k
|
|
|
15877
16303
|
/**
|
|
15878
16304
|
*
|
|
15879
16305
|
* @export
|
|
15880
|
-
* @interface
|
|
16306
|
+
* @interface JsonApiUserSettingInAttributes
|
|
15881
16307
|
*/
|
|
15882
|
-
export interface
|
|
15883
|
-
/**
|
|
15884
|
-
*
|
|
15885
|
-
* @type {JsonApiUserSettingIn}
|
|
15886
|
-
* @memberof JsonApiUserSettingInDocument
|
|
15887
|
-
*/
|
|
15888
|
-
data: JsonApiUserSettingIn;
|
|
15889
|
-
}
|
|
15890
|
-
/**
|
|
15891
|
-
* JSON:API representation of userSetting entity.
|
|
15892
|
-
* @export
|
|
15893
|
-
* @interface JsonApiUserSettingOut
|
|
15894
|
-
*/
|
|
15895
|
-
export interface JsonApiUserSettingOut {
|
|
15896
|
-
/**
|
|
15897
|
-
* Object type
|
|
15898
|
-
* @type {string}
|
|
15899
|
-
* @memberof JsonApiUserSettingOut
|
|
15900
|
-
*/
|
|
15901
|
-
type: JsonApiUserSettingOutTypeEnum;
|
|
15902
|
-
/**
|
|
15903
|
-
* API identifier of an object
|
|
15904
|
-
* @type {string}
|
|
15905
|
-
* @memberof JsonApiUserSettingOut
|
|
15906
|
-
*/
|
|
15907
|
-
id: string;
|
|
15908
|
-
/**
|
|
15909
|
-
*
|
|
15910
|
-
* @type {JsonApiUserSettingOutAttributes}
|
|
15911
|
-
* @memberof JsonApiUserSettingOut
|
|
15912
|
-
*/
|
|
15913
|
-
attributes?: JsonApiUserSettingOutAttributes;
|
|
15914
|
-
}
|
|
15915
|
-
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
15916
|
-
readonly USER_SETTING: "userSetting";
|
|
15917
|
-
};
|
|
15918
|
-
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15919
|
-
/**
|
|
15920
|
-
*
|
|
15921
|
-
* @export
|
|
15922
|
-
* @interface JsonApiUserSettingOutAttributes
|
|
15923
|
-
*/
|
|
15924
|
-
export interface JsonApiUserSettingOutAttributes {
|
|
16308
|
+
export interface JsonApiUserSettingInAttributes {
|
|
15925
16309
|
/**
|
|
15926
16310
|
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
15927
16311
|
* @type {object}
|
|
15928
|
-
* @memberof
|
|
16312
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
15929
16313
|
*/
|
|
15930
16314
|
content?: object;
|
|
15931
16315
|
/**
|
|
15932
16316
|
*
|
|
15933
16317
|
* @type {string}
|
|
15934
|
-
* @memberof
|
|
16318
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
15935
16319
|
*/
|
|
15936
|
-
type?:
|
|
16320
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
15937
16321
|
}
|
|
15938
|
-
export declare const
|
|
16322
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
15939
16323
|
readonly TIMEZONE: "TIMEZONE";
|
|
15940
16324
|
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15941
16325
|
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
@@ -15962,7 +16346,49 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
|
15962
16346
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
15963
16347
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
15964
16348
|
};
|
|
15965
|
-
export type
|
|
16349
|
+
export type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
16350
|
+
/**
|
|
16351
|
+
*
|
|
16352
|
+
* @export
|
|
16353
|
+
* @interface JsonApiUserSettingInDocument
|
|
16354
|
+
*/
|
|
16355
|
+
export interface JsonApiUserSettingInDocument {
|
|
16356
|
+
/**
|
|
16357
|
+
*
|
|
16358
|
+
* @type {JsonApiUserSettingIn}
|
|
16359
|
+
* @memberof JsonApiUserSettingInDocument
|
|
16360
|
+
*/
|
|
16361
|
+
data: JsonApiUserSettingIn;
|
|
16362
|
+
}
|
|
16363
|
+
/**
|
|
16364
|
+
* JSON:API representation of userSetting entity.
|
|
16365
|
+
* @export
|
|
16366
|
+
* @interface JsonApiUserSettingOut
|
|
16367
|
+
*/
|
|
16368
|
+
export interface JsonApiUserSettingOut {
|
|
16369
|
+
/**
|
|
16370
|
+
* Object type
|
|
16371
|
+
* @type {string}
|
|
16372
|
+
* @memberof JsonApiUserSettingOut
|
|
16373
|
+
*/
|
|
16374
|
+
type: JsonApiUserSettingOutTypeEnum;
|
|
16375
|
+
/**
|
|
16376
|
+
* API identifier of an object
|
|
16377
|
+
* @type {string}
|
|
16378
|
+
* @memberof JsonApiUserSettingOut
|
|
16379
|
+
*/
|
|
16380
|
+
id: string;
|
|
16381
|
+
/**
|
|
16382
|
+
*
|
|
16383
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
16384
|
+
* @memberof JsonApiUserSettingOut
|
|
16385
|
+
*/
|
|
16386
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
16387
|
+
}
|
|
16388
|
+
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
16389
|
+
readonly USER_SETTING: "userSetting";
|
|
16390
|
+
};
|
|
16391
|
+
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15966
16392
|
/**
|
|
15967
16393
|
*
|
|
15968
16394
|
* @export
|
|
@@ -16027,10 +16453,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16027
16453
|
id: string;
|
|
16028
16454
|
/**
|
|
16029
16455
|
*
|
|
16030
|
-
* @type {
|
|
16456
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
16031
16457
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16032
16458
|
*/
|
|
16033
|
-
attributes?:
|
|
16459
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
16034
16460
|
/**
|
|
16035
16461
|
*
|
|
16036
16462
|
* @type {ObjectLinks}
|
|
@@ -16894,16 +17320,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
16894
17320
|
id: string;
|
|
16895
17321
|
/**
|
|
16896
17322
|
*
|
|
16897
|
-
* @type {
|
|
17323
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16898
17324
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16899
17325
|
*/
|
|
16900
|
-
attributes?:
|
|
17326
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16901
17327
|
/**
|
|
16902
17328
|
*
|
|
16903
|
-
* @type {
|
|
17329
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16904
17330
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16905
17331
|
*/
|
|
16906
|
-
relationships?:
|
|
17332
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16907
17333
|
}
|
|
16908
17334
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
16909
17335
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -16971,46 +17397,21 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
16971
17397
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16972
17398
|
/**
|
|
16973
17399
|
*
|
|
16974
|
-
* @type {
|
|
17400
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16975
17401
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16976
17402
|
*/
|
|
16977
|
-
attributes?:
|
|
17403
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16978
17404
|
/**
|
|
16979
17405
|
*
|
|
16980
|
-
* @type {
|
|
17406
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16981
17407
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16982
17408
|
*/
|
|
16983
|
-
relationships?:
|
|
17409
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16984
17410
|
}
|
|
16985
17411
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
16986
17412
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16987
17413
|
};
|
|
16988
17414
|
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
17415
|
/**
|
|
17015
17416
|
*
|
|
17016
17417
|
* @export
|
|
@@ -17067,32 +17468,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17067
17468
|
*/
|
|
17068
17469
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
17069
17470
|
}
|
|
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
17471
|
/**
|
|
17097
17472
|
*
|
|
17098
17473
|
* @export
|
|
@@ -17119,16 +17494,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
17119
17494
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17120
17495
|
/**
|
|
17121
17496
|
*
|
|
17122
|
-
* @type {
|
|
17497
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17123
17498
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17124
17499
|
*/
|
|
17125
|
-
attributes?:
|
|
17500
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17126
17501
|
/**
|
|
17127
17502
|
*
|
|
17128
|
-
* @type {
|
|
17503
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17129
17504
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17130
17505
|
*/
|
|
17131
|
-
relationships?:
|
|
17506
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17132
17507
|
/**
|
|
17133
17508
|
*
|
|
17134
17509
|
* @type {ObjectLinks}
|
|
@@ -17160,21 +17535,46 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
17160
17535
|
id: string;
|
|
17161
17536
|
/**
|
|
17162
17537
|
*
|
|
17163
|
-
* @type {
|
|
17538
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
17164
17539
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17165
17540
|
*/
|
|
17166
|
-
attributes?:
|
|
17541
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
17167
17542
|
/**
|
|
17168
17543
|
*
|
|
17169
|
-
* @type {
|
|
17544
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
17170
17545
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17171
17546
|
*/
|
|
17172
|
-
relationships?:
|
|
17547
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
17173
17548
|
}
|
|
17174
17549
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
17175
17550
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17176
17551
|
};
|
|
17177
17552
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
17553
|
+
/**
|
|
17554
|
+
*
|
|
17555
|
+
* @export
|
|
17556
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17557
|
+
*/
|
|
17558
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
17559
|
+
/**
|
|
17560
|
+
*
|
|
17561
|
+
* @type {string}
|
|
17562
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17563
|
+
*/
|
|
17564
|
+
title?: string;
|
|
17565
|
+
/**
|
|
17566
|
+
*
|
|
17567
|
+
* @type {string}
|
|
17568
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17569
|
+
*/
|
|
17570
|
+
description?: string;
|
|
17571
|
+
/**
|
|
17572
|
+
*
|
|
17573
|
+
* @type {Array<string>}
|
|
17574
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17575
|
+
*/
|
|
17576
|
+
filterValues?: Array<string>;
|
|
17577
|
+
}
|
|
17178
17578
|
/**
|
|
17179
17579
|
*
|
|
17180
17580
|
* @export
|
|
@@ -17188,6 +17588,32 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
17188
17588
|
*/
|
|
17189
17589
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
17190
17590
|
}
|
|
17591
|
+
/**
|
|
17592
|
+
*
|
|
17593
|
+
* @export
|
|
17594
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17595
|
+
*/
|
|
17596
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
17597
|
+
/**
|
|
17598
|
+
*
|
|
17599
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
17600
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17601
|
+
*/
|
|
17602
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
17603
|
+
}
|
|
17604
|
+
/**
|
|
17605
|
+
*
|
|
17606
|
+
* @export
|
|
17607
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17608
|
+
*/
|
|
17609
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
17610
|
+
/**
|
|
17611
|
+
*
|
|
17612
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17613
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17614
|
+
*/
|
|
17615
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17616
|
+
}
|
|
17191
17617
|
/**
|
|
17192
17618
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
17193
17619
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -17666,10 +18092,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
17666
18092
|
id: string;
|
|
17667
18093
|
/**
|
|
17668
18094
|
*
|
|
17669
|
-
* @type {
|
|
18095
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
17670
18096
|
* @memberof JsonApiWorkspaceSettingIn
|
|
17671
18097
|
*/
|
|
17672
|
-
attributes?:
|
|
18098
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
17673
18099
|
}
|
|
17674
18100
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
17675
18101
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17714,10 +18140,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
17714
18140
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17715
18141
|
/**
|
|
17716
18142
|
*
|
|
17717
|
-
* @type {
|
|
18143
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
17718
18144
|
* @memberof JsonApiWorkspaceSettingOut
|
|
17719
18145
|
*/
|
|
17720
|
-
attributes?:
|
|
18146
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
17721
18147
|
}
|
|
17722
18148
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
17723
18149
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17793,10 +18219,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
17793
18219
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17794
18220
|
/**
|
|
17795
18221
|
*
|
|
17796
|
-
* @type {
|
|
18222
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
17797
18223
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
17798
18224
|
*/
|
|
17799
|
-
attributes?:
|
|
18225
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
17800
18226
|
/**
|
|
17801
18227
|
*
|
|
17802
18228
|
* @type {ObjectLinks}
|
|
@@ -17828,10 +18254,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
17828
18254
|
id: string;
|
|
17829
18255
|
/**
|
|
17830
18256
|
*
|
|
17831
|
-
* @type {
|
|
18257
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
17832
18258
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
17833
18259
|
*/
|
|
17834
|
-
attributes?:
|
|
18260
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
17835
18261
|
}
|
|
17836
18262
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
17837
18263
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17870,10 +18296,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
17870
18296
|
id?: string;
|
|
17871
18297
|
/**
|
|
17872
18298
|
*
|
|
17873
|
-
* @type {
|
|
18299
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
17874
18300
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
17875
18301
|
*/
|
|
17876
|
-
attributes?:
|
|
18302
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
17877
18303
|
}
|
|
17878
18304
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
17879
18305
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18287,6 +18713,19 @@ export declare const OrganizationPermissionAssignmentPermissionsEnum: {
|
|
|
18287
18713
|
readonly SELF_CREATE_TOKEN: "SELF_CREATE_TOKEN";
|
|
18288
18714
|
};
|
|
18289
18715
|
export type OrganizationPermissionAssignmentPermissionsEnum = typeof OrganizationPermissionAssignmentPermissionsEnum[keyof typeof OrganizationPermissionAssignmentPermissionsEnum];
|
|
18716
|
+
/**
|
|
18717
|
+
*
|
|
18718
|
+
* @export
|
|
18719
|
+
* @interface Over
|
|
18720
|
+
*/
|
|
18721
|
+
export interface Over {
|
|
18722
|
+
/**
|
|
18723
|
+
*
|
|
18724
|
+
* @type {Array<IdentifierRef>}
|
|
18725
|
+
* @memberof Over
|
|
18726
|
+
*/
|
|
18727
|
+
attributes: Array<IdentifierRef>;
|
|
18728
|
+
}
|
|
18290
18729
|
/**
|
|
18291
18730
|
*
|
|
18292
18731
|
* @export
|
|
@@ -19682,6 +20121,19 @@ export declare const SqlColumnDataTypeEnum: {
|
|
|
19682
20121
|
readonly BOOLEAN: "BOOLEAN";
|
|
19683
20122
|
};
|
|
19684
20123
|
export type SqlColumnDataTypeEnum = typeof SqlColumnDataTypeEnum[keyof typeof SqlColumnDataTypeEnum];
|
|
20124
|
+
/**
|
|
20125
|
+
*
|
|
20126
|
+
* @export
|
|
20127
|
+
* @interface SwitchIdentityProviderRequest
|
|
20128
|
+
*/
|
|
20129
|
+
export interface SwitchIdentityProviderRequest {
|
|
20130
|
+
/**
|
|
20131
|
+
* Identity provider ID to set as active for the organization.
|
|
20132
|
+
* @type {string}
|
|
20133
|
+
* @memberof SwitchIdentityProviderRequest
|
|
20134
|
+
*/
|
|
20135
|
+
idpId: string;
|
|
20136
|
+
}
|
|
19685
20137
|
/**
|
|
19686
20138
|
* Table override settings.
|
|
19687
20139
|
* @export
|
|
@@ -21228,6 +21680,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
21228
21680
|
* @throws {RequiredError}
|
|
21229
21681
|
*/
|
|
21230
21682
|
setTranslations: (workspaceId: string, xliff: Xliff, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21683
|
+
/**
|
|
21684
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
21685
|
+
* @summary Switch Active Identity Provider
|
|
21686
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
21687
|
+
* @param {*} [options] Override http request option.
|
|
21688
|
+
* @throws {RequiredError}
|
|
21689
|
+
*/
|
|
21690
|
+
switchActiveIdentityProvider: (switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21231
21691
|
/**
|
|
21232
21692
|
*
|
|
21233
21693
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -21511,6 +21971,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
21511
21971
|
* @throws {RequiredError}
|
|
21512
21972
|
*/
|
|
21513
21973
|
setTranslations(workspaceId: string, xliff: Xliff, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21974
|
+
/**
|
|
21975
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
21976
|
+
* @summary Switch Active Identity Provider
|
|
21977
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
21978
|
+
* @param {*} [options] Override http request option.
|
|
21979
|
+
* @throws {RequiredError}
|
|
21980
|
+
*/
|
|
21981
|
+
switchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21514
21982
|
/**
|
|
21515
21983
|
*
|
|
21516
21984
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -21776,6 +22244,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
21776
22244
|
* @throws {RequiredError}
|
|
21777
22245
|
*/
|
|
21778
22246
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22247
|
+
/**
|
|
22248
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
22249
|
+
* @summary Switch Active Identity Provider
|
|
22250
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
22251
|
+
* @param {*} [options] Override http request option.
|
|
22252
|
+
* @throws {RequiredError}
|
|
22253
|
+
*/
|
|
22254
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
21779
22255
|
/**
|
|
21780
22256
|
*
|
|
21781
22257
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22068,6 +22544,15 @@ export interface ActionsApiInterface {
|
|
|
22068
22544
|
* @memberof ActionsApiInterface
|
|
22069
22545
|
*/
|
|
22070
22546
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22547
|
+
/**
|
|
22548
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
22549
|
+
* @summary Switch Active Identity Provider
|
|
22550
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
22551
|
+
* @param {*} [options] Override http request option.
|
|
22552
|
+
* @throws {RequiredError}
|
|
22553
|
+
* @memberof ActionsApiInterface
|
|
22554
|
+
*/
|
|
22555
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
22071
22556
|
/**
|
|
22072
22557
|
*
|
|
22073
22558
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22533,6 +23018,19 @@ export interface ActionsApiSetTranslationsRequest {
|
|
|
22533
23018
|
*/
|
|
22534
23019
|
readonly xliff: Xliff;
|
|
22535
23020
|
}
|
|
23021
|
+
/**
|
|
23022
|
+
* Request parameters for switchActiveIdentityProvider operation in ActionsApi.
|
|
23023
|
+
* @export
|
|
23024
|
+
* @interface ActionsApiSwitchActiveIdentityProviderRequest
|
|
23025
|
+
*/
|
|
23026
|
+
export interface ActionsApiSwitchActiveIdentityProviderRequest {
|
|
23027
|
+
/**
|
|
23028
|
+
*
|
|
23029
|
+
* @type {SwitchIdentityProviderRequest}
|
|
23030
|
+
* @memberof ActionsApiSwitchActiveIdentityProvider
|
|
23031
|
+
*/
|
|
23032
|
+
readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
|
|
23033
|
+
}
|
|
22536
23034
|
/**
|
|
22537
23035
|
* Request parameters for unsubscribeAutomation operation in ActionsApi.
|
|
22538
23036
|
* @export
|
|
@@ -22850,6 +23348,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
22850
23348
|
* @memberof ActionsApi
|
|
22851
23349
|
*/
|
|
22852
23350
|
setTranslations(requestParameters: ActionsApiSetTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23351
|
+
/**
|
|
23352
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
23353
|
+
* @summary Switch Active Identity Provider
|
|
23354
|
+
* @param {ActionsApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
23355
|
+
* @param {*} [options] Override http request option.
|
|
23356
|
+
* @throws {RequiredError}
|
|
23357
|
+
* @memberof ActionsApi
|
|
23358
|
+
*/
|
|
23359
|
+
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22853
23360
|
/**
|
|
22854
23361
|
*
|
|
22855
23362
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -53949,6 +54456,94 @@ export declare class OptionsApi extends BaseAPI implements OptionsApiInterface {
|
|
|
53949
54456
|
*/
|
|
53950
54457
|
getAllOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
53951
54458
|
}
|
|
54459
|
+
/**
|
|
54460
|
+
* OrganizationApi - axios parameter creator
|
|
54461
|
+
* @export
|
|
54462
|
+
*/
|
|
54463
|
+
export declare const OrganizationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
54464
|
+
/**
|
|
54465
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54466
|
+
* @summary Switch Active Identity Provider
|
|
54467
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
54468
|
+
* @param {*} [options] Override http request option.
|
|
54469
|
+
* @throws {RequiredError}
|
|
54470
|
+
*/
|
|
54471
|
+
switchActiveIdentityProvider: (switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54472
|
+
};
|
|
54473
|
+
/**
|
|
54474
|
+
* OrganizationApi - functional programming interface
|
|
54475
|
+
* @export
|
|
54476
|
+
*/
|
|
54477
|
+
export declare const OrganizationApiFp: (configuration?: Configuration) => {
|
|
54478
|
+
/**
|
|
54479
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54480
|
+
* @summary Switch Active Identity Provider
|
|
54481
|
+
* @param {SwitchIdentityProviderRequest} switchIdentityProviderRequest
|
|
54482
|
+
* @param {*} [options] Override http request option.
|
|
54483
|
+
* @throws {RequiredError}
|
|
54484
|
+
*/
|
|
54485
|
+
switchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
54486
|
+
};
|
|
54487
|
+
/**
|
|
54488
|
+
* OrganizationApi - factory interface
|
|
54489
|
+
* @export
|
|
54490
|
+
*/
|
|
54491
|
+
export declare const OrganizationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54492
|
+
/**
|
|
54493
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54494
|
+
* @summary Switch Active Identity Provider
|
|
54495
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54496
|
+
* @param {*} [options] Override http request option.
|
|
54497
|
+
* @throws {RequiredError}
|
|
54498
|
+
*/
|
|
54499
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
54500
|
+
};
|
|
54501
|
+
/**
|
|
54502
|
+
* OrganizationApi - interface
|
|
54503
|
+
* @export
|
|
54504
|
+
* @interface OrganizationApi
|
|
54505
|
+
*/
|
|
54506
|
+
export interface OrganizationApiInterface {
|
|
54507
|
+
/**
|
|
54508
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54509
|
+
* @summary Switch Active Identity Provider
|
|
54510
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54511
|
+
* @param {*} [options] Override http request option.
|
|
54512
|
+
* @throws {RequiredError}
|
|
54513
|
+
* @memberof OrganizationApiInterface
|
|
54514
|
+
*/
|
|
54515
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
54516
|
+
}
|
|
54517
|
+
/**
|
|
54518
|
+
* Request parameters for switchActiveIdentityProvider operation in OrganizationApi.
|
|
54519
|
+
* @export
|
|
54520
|
+
* @interface OrganizationApiSwitchActiveIdentityProviderRequest
|
|
54521
|
+
*/
|
|
54522
|
+
export interface OrganizationApiSwitchActiveIdentityProviderRequest {
|
|
54523
|
+
/**
|
|
54524
|
+
*
|
|
54525
|
+
* @type {SwitchIdentityProviderRequest}
|
|
54526
|
+
* @memberof OrganizationApiSwitchActiveIdentityProvider
|
|
54527
|
+
*/
|
|
54528
|
+
readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
|
|
54529
|
+
}
|
|
54530
|
+
/**
|
|
54531
|
+
* OrganizationApi - object-oriented interface
|
|
54532
|
+
* @export
|
|
54533
|
+
* @class OrganizationApi
|
|
54534
|
+
* @extends {BaseAPI}
|
|
54535
|
+
*/
|
|
54536
|
+
export declare class OrganizationApi extends BaseAPI implements OrganizationApiInterface {
|
|
54537
|
+
/**
|
|
54538
|
+
* Switch the active identity provider for the organization. Requires MANAGE permission on the organization.
|
|
54539
|
+
* @summary Switch Active Identity Provider
|
|
54540
|
+
* @param {OrganizationApiSwitchActiveIdentityProviderRequest} requestParameters Request parameters.
|
|
54541
|
+
* @param {*} [options] Override http request option.
|
|
54542
|
+
* @throws {RequiredError}
|
|
54543
|
+
* @memberof OrganizationApi
|
|
54544
|
+
*/
|
|
54545
|
+
switchActiveIdentityProvider(requestParameters: OrganizationApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
54546
|
+
}
|
|
53952
54547
|
/**
|
|
53953
54548
|
* OrganizationControllerApi - axios parameter creator
|
|
53954
54549
|
* @export
|