@gooddata/api-client-tiger 10.33.0-alpha.28 → 10.33.0-alpha.3
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 +10588 -13469
- 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 +4 -2
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +3 -2
- package/esm/export.js.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +0 -417
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +0 -57
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -341
- 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 +342 -346
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +588 -1183
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +8 -250
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8571 -8974
- package/esm/index.d.ts +1 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +0 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -517,62 +517,12 @@ 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
|
-
}
|
|
551
520
|
/**
|
|
552
521
|
* @type AttributeFilter
|
|
553
522
|
* Abstract filter definition type attributes
|
|
554
523
|
* @export
|
|
555
524
|
*/
|
|
556
525
|
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
|
-
}
|
|
576
526
|
/**
|
|
577
527
|
* Filter on specific set of label values.
|
|
578
528
|
* @export
|
|
@@ -586,25 +536,6 @@ export interface AttributeFilterElements {
|
|
|
586
536
|
*/
|
|
587
537
|
values: Array<string | null>;
|
|
588
538
|
}
|
|
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
|
-
}
|
|
608
539
|
/**
|
|
609
540
|
*
|
|
610
541
|
* @export
|
|
@@ -660,19 +591,6 @@ export declare const AutomationAlertTriggerEnum: {
|
|
|
660
591
|
readonly ONCE: "ONCE";
|
|
661
592
|
};
|
|
662
593
|
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
|
-
}
|
|
676
594
|
/**
|
|
677
595
|
*
|
|
678
596
|
* @export
|
|
@@ -1094,202 +1012,6 @@ export interface CustomOverride {
|
|
|
1094
1012
|
[key: string]: CustomMetric;
|
|
1095
1013
|
};
|
|
1096
1014
|
}
|
|
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;
|
|
1293
1015
|
/**
|
|
1294
1016
|
*
|
|
1295
1017
|
* @export
|
|
@@ -1376,53 +1098,6 @@ export declare const DashboardSlidesTemplateAppliedOnEnum: {
|
|
|
1376
1098
|
readonly PPTX: "PPTX";
|
|
1377
1099
|
};
|
|
1378
1100
|
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];
|
|
1426
1101
|
/**
|
|
1427
1102
|
* Data source permission assignments
|
|
1428
1103
|
* @export
|
|
@@ -1558,19 +1233,6 @@ export type DatasetWorkspaceDataFilterIdentifierTypeEnum = typeof DatasetWorkspa
|
|
|
1558
1233
|
* @export
|
|
1559
1234
|
*/
|
|
1560
1235
|
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
|
-
}
|
|
1574
1236
|
/**
|
|
1575
1237
|
*
|
|
1576
1238
|
* @export
|
|
@@ -2078,12 +1740,6 @@ export interface DeclarativeAutomation {
|
|
|
2078
1740
|
* @memberof DeclarativeAutomation
|
|
2079
1741
|
*/
|
|
2080
1742
|
slidesExports?: Array<AutomationSlidesExport>;
|
|
2081
|
-
/**
|
|
2082
|
-
*
|
|
2083
|
-
* @type {Array<AutomationDashboardTabularExport>}
|
|
2084
|
-
* @memberof DeclarativeAutomation
|
|
2085
|
-
*/
|
|
2086
|
-
dashboardTabularExports?: Array<AutomationDashboardTabularExport>;
|
|
2087
1743
|
/**
|
|
2088
1744
|
* External recipients of the automation action results.
|
|
2089
1745
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -5209,60 +4865,6 @@ export declare const IdentifierDuplicationsTypeEnum: {
|
|
|
5209
4865
|
readonly WORKSPACE_DATA_FILTER_SETTINGS: "workspaceDataFilterSettings";
|
|
5210
4866
|
};
|
|
5211
4867
|
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];
|
|
5266
4868
|
/**
|
|
5267
4869
|
* Export request object describing the export properties and metadata for image exports.
|
|
5268
4870
|
* @export
|
|
@@ -6966,10 +6568,10 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6966
6568
|
details?: any;
|
|
6967
6569
|
/**
|
|
6968
6570
|
*
|
|
6969
|
-
* @type {
|
|
6571
|
+
* @type {JsonApiAutomationOutAttributesMetadata}
|
|
6970
6572
|
* @memberof JsonApiAutomationOutAttributes
|
|
6971
6573
|
*/
|
|
6972
|
-
metadata?:
|
|
6574
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
6973
6575
|
/**
|
|
6974
6576
|
* Current state of the automation.
|
|
6975
6577
|
* @type {string}
|
|
@@ -6978,58 +6580,52 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6978
6580
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6979
6581
|
/**
|
|
6980
6582
|
*
|
|
6981
|
-
* @type {
|
|
6982
|
-
* @memberof JsonApiAutomationOutAttributes
|
|
6983
|
-
*/
|
|
6984
|
-
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
6985
|
-
/**
|
|
6986
|
-
*
|
|
6987
|
-
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
6583
|
+
* @type {JsonApiAutomationOutAttributesSchedule}
|
|
6988
6584
|
* @memberof JsonApiAutomationOutAttributes
|
|
6989
6585
|
*/
|
|
6990
|
-
|
|
6586
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
6991
6587
|
/**
|
|
6992
6588
|
*
|
|
6993
|
-
* @type {
|
|
6589
|
+
* @type {JsonApiAutomationOutAttributesAlert}
|
|
6994
6590
|
* @memberof JsonApiAutomationOutAttributes
|
|
6995
6591
|
*/
|
|
6996
|
-
|
|
6592
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
6997
6593
|
/**
|
|
6998
6594
|
*
|
|
6999
|
-
* @type {Array<
|
|
6595
|
+
* @type {Array<JsonApiAutomationOutAttributesTabularExports>}
|
|
7000
6596
|
* @memberof JsonApiAutomationOutAttributes
|
|
7001
6597
|
*/
|
|
7002
|
-
|
|
6598
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
|
|
7003
6599
|
/**
|
|
7004
6600
|
*
|
|
7005
|
-
* @type {Array<
|
|
6601
|
+
* @type {Array<JsonApiAutomationOutAttributesVisualExports>}
|
|
7006
6602
|
* @memberof JsonApiAutomationOutAttributes
|
|
7007
6603
|
*/
|
|
7008
|
-
|
|
6604
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
|
|
7009
6605
|
/**
|
|
7010
6606
|
*
|
|
7011
|
-
* @type {Array<
|
|
6607
|
+
* @type {Array<JsonApiAutomationOutAttributesImageExports>}
|
|
7012
6608
|
* @memberof JsonApiAutomationOutAttributes
|
|
7013
6609
|
*/
|
|
7014
|
-
|
|
6610
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
|
|
7015
6611
|
/**
|
|
7016
6612
|
*
|
|
7017
|
-
* @type {Array<
|
|
6613
|
+
* @type {Array<JsonApiAutomationOutAttributesRawExports>}
|
|
7018
6614
|
* @memberof JsonApiAutomationOutAttributes
|
|
7019
6615
|
*/
|
|
7020
|
-
|
|
6616
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExports>;
|
|
7021
6617
|
/**
|
|
7022
6618
|
*
|
|
7023
|
-
* @type {Array<
|
|
6619
|
+
* @type {Array<JsonApiAutomationOutAttributesSlidesExports>}
|
|
7024
6620
|
* @memberof JsonApiAutomationOutAttributes
|
|
7025
6621
|
*/
|
|
7026
|
-
|
|
6622
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExports>;
|
|
7027
6623
|
/**
|
|
7028
6624
|
* External recipients of the automation action results.
|
|
7029
|
-
* @type {Array<
|
|
6625
|
+
* @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
|
|
7030
6626
|
* @memberof JsonApiAutomationOutAttributes
|
|
7031
6627
|
*/
|
|
7032
|
-
externalRecipients?: Array<
|
|
6628
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
|
|
7033
6629
|
/**
|
|
7034
6630
|
*
|
|
7035
6631
|
* @type {string}
|
|
@@ -7051,564 +6647,532 @@ export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOu
|
|
|
7051
6647
|
/**
|
|
7052
6648
|
*
|
|
7053
6649
|
* @export
|
|
7054
|
-
* @interface
|
|
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
|
|
6650
|
+
* @interface JsonApiAutomationOutAttributesAlert
|
|
7241
6651
|
*/
|
|
7242
|
-
export interface
|
|
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 {
|
|
6652
|
+
export interface JsonApiAutomationOutAttributesAlert {
|
|
7351
6653
|
/**
|
|
7352
6654
|
*
|
|
7353
6655
|
* @type {AlertAfm}
|
|
7354
|
-
* @memberof
|
|
6656
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
7355
6657
|
*/
|
|
7356
6658
|
execution: AlertAfm;
|
|
7357
6659
|
/**
|
|
7358
6660
|
*
|
|
7359
6661
|
* @type {AlertCondition}
|
|
7360
|
-
* @memberof
|
|
6662
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
7361
6663
|
*/
|
|
7362
6664
|
condition: AlertCondition;
|
|
7363
6665
|
/**
|
|
7364
6666
|
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
7365
6667
|
* @type {string}
|
|
7366
|
-
* @memberof
|
|
6668
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
7367
6669
|
*/
|
|
7368
|
-
trigger?:
|
|
6670
|
+
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
7369
6671
|
}
|
|
7370
|
-
export declare const
|
|
6672
|
+
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
7371
6673
|
readonly ALWAYS: "ALWAYS";
|
|
7372
6674
|
readonly ONCE: "ONCE";
|
|
7373
6675
|
};
|
|
7374
|
-
export type
|
|
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
|
-
}
|
|
6676
|
+
export type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
7388
6677
|
/**
|
|
7389
6678
|
*
|
|
7390
6679
|
* @export
|
|
7391
|
-
* @interface
|
|
6680
|
+
* @interface JsonApiAutomationOutAttributesExternalRecipients
|
|
7392
6681
|
*/
|
|
7393
|
-
export interface
|
|
6682
|
+
export interface JsonApiAutomationOutAttributesExternalRecipients {
|
|
7394
6683
|
/**
|
|
7395
6684
|
* E-mail address to send notifications from.
|
|
7396
6685
|
* @type {string}
|
|
7397
|
-
* @memberof
|
|
6686
|
+
* @memberof JsonApiAutomationOutAttributesExternalRecipients
|
|
7398
6687
|
*/
|
|
7399
6688
|
email: string;
|
|
7400
6689
|
}
|
|
7401
6690
|
/**
|
|
7402
6691
|
*
|
|
7403
6692
|
* @export
|
|
7404
|
-
* @interface
|
|
6693
|
+
* @interface JsonApiAutomationOutAttributesImageExports
|
|
7405
6694
|
*/
|
|
7406
|
-
export interface
|
|
6695
|
+
export interface JsonApiAutomationOutAttributesImageExports {
|
|
7407
6696
|
/**
|
|
7408
6697
|
*
|
|
7409
6698
|
* @type {ImageExportRequest}
|
|
7410
|
-
* @memberof
|
|
6699
|
+
* @memberof JsonApiAutomationOutAttributesImageExports
|
|
7411
6700
|
*/
|
|
7412
6701
|
requestPayload: ImageExportRequest;
|
|
7413
6702
|
}
|
|
7414
6703
|
/**
|
|
7415
6704
|
* Additional information for the automation.
|
|
7416
6705
|
* @export
|
|
7417
|
-
* @interface
|
|
6706
|
+
* @interface JsonApiAutomationOutAttributesMetadata
|
|
7418
6707
|
*/
|
|
7419
|
-
export interface
|
|
6708
|
+
export interface JsonApiAutomationOutAttributesMetadata {
|
|
7420
6709
|
/**
|
|
7421
6710
|
*
|
|
7422
6711
|
* @type {string}
|
|
7423
|
-
* @memberof
|
|
6712
|
+
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
7424
6713
|
*/
|
|
7425
6714
|
widget?: string;
|
|
7426
6715
|
/**
|
|
7427
6716
|
*
|
|
7428
6717
|
* @type {Array<VisibleFilter>}
|
|
7429
|
-
* @memberof
|
|
6718
|
+
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
7430
6719
|
*/
|
|
7431
6720
|
visibleFilters?: Array<VisibleFilter>;
|
|
7432
6721
|
}
|
|
7433
6722
|
/**
|
|
7434
6723
|
*
|
|
7435
6724
|
* @export
|
|
7436
|
-
* @interface
|
|
6725
|
+
* @interface JsonApiAutomationOutAttributesRawExports
|
|
7437
6726
|
*/
|
|
7438
|
-
export interface
|
|
6727
|
+
export interface JsonApiAutomationOutAttributesRawExports {
|
|
7439
6728
|
/**
|
|
7440
6729
|
*
|
|
7441
6730
|
* @type {RawExportRequest}
|
|
7442
|
-
* @memberof
|
|
6731
|
+
* @memberof JsonApiAutomationOutAttributesRawExports
|
|
7443
6732
|
*/
|
|
7444
6733
|
requestPayload: RawExportRequest;
|
|
7445
6734
|
}
|
|
7446
6735
|
/**
|
|
7447
6736
|
*
|
|
7448
6737
|
* @export
|
|
7449
|
-
* @interface
|
|
6738
|
+
* @interface JsonApiAutomationOutAttributesSchedule
|
|
7450
6739
|
*/
|
|
7451
|
-
export interface
|
|
6740
|
+
export interface JsonApiAutomationOutAttributesSchedule {
|
|
7452
6741
|
/**
|
|
7453
6742
|
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
7454
6743
|
* @type {string}
|
|
7455
|
-
* @memberof
|
|
6744
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
7456
6745
|
*/
|
|
7457
6746
|
cron: string;
|
|
7458
6747
|
/**
|
|
7459
6748
|
* Human-readable description of the cron expression.
|
|
7460
6749
|
* @type {string}
|
|
7461
|
-
* @memberof
|
|
6750
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
7462
6751
|
*/
|
|
7463
6752
|
cronDescription?: string;
|
|
7464
6753
|
/**
|
|
7465
6754
|
* Timezone in which the schedule is defined.
|
|
7466
6755
|
* @type {string}
|
|
7467
|
-
* @memberof
|
|
6756
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
7468
6757
|
*/
|
|
7469
6758
|
timezone: string;
|
|
7470
6759
|
/**
|
|
7471
6760
|
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
7472
6761
|
* @type {string}
|
|
7473
|
-
* @memberof
|
|
6762
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
7474
6763
|
*/
|
|
7475
6764
|
firstRun?: string;
|
|
7476
6765
|
}
|
|
7477
6766
|
/**
|
|
7478
6767
|
*
|
|
7479
6768
|
* @export
|
|
7480
|
-
* @interface
|
|
6769
|
+
* @interface JsonApiAutomationOutAttributesSlidesExports
|
|
7481
6770
|
*/
|
|
7482
|
-
export interface
|
|
6771
|
+
export interface JsonApiAutomationOutAttributesSlidesExports {
|
|
7483
6772
|
/**
|
|
7484
6773
|
*
|
|
7485
6774
|
* @type {SlidesExportRequest}
|
|
7486
|
-
* @memberof
|
|
6775
|
+
* @memberof JsonApiAutomationOutAttributesSlidesExports
|
|
7487
6776
|
*/
|
|
7488
6777
|
requestPayload: SlidesExportRequest;
|
|
7489
6778
|
}
|
|
7490
6779
|
/**
|
|
7491
6780
|
*
|
|
7492
6781
|
* @export
|
|
7493
|
-
* @interface
|
|
6782
|
+
* @interface JsonApiAutomationOutAttributesTabularExports
|
|
7494
6783
|
*/
|
|
7495
|
-
export interface
|
|
6784
|
+
export interface JsonApiAutomationOutAttributesTabularExports {
|
|
7496
6785
|
/**
|
|
7497
6786
|
*
|
|
7498
6787
|
* @type {TabularExportRequest}
|
|
7499
|
-
* @memberof
|
|
6788
|
+
* @memberof JsonApiAutomationOutAttributesTabularExports
|
|
7500
6789
|
*/
|
|
7501
6790
|
requestPayload: TabularExportRequest;
|
|
7502
6791
|
}
|
|
7503
6792
|
/**
|
|
7504
6793
|
*
|
|
7505
6794
|
* @export
|
|
7506
|
-
* @interface
|
|
6795
|
+
* @interface JsonApiAutomationOutAttributesVisualExports
|
|
7507
6796
|
*/
|
|
7508
|
-
export interface
|
|
6797
|
+
export interface JsonApiAutomationOutAttributesVisualExports {
|
|
7509
6798
|
/**
|
|
7510
6799
|
*
|
|
7511
6800
|
* @type {VisualExportRequest}
|
|
7512
|
-
* @memberof
|
|
6801
|
+
* @memberof JsonApiAutomationOutAttributesVisualExports
|
|
7513
6802
|
*/
|
|
7514
6803
|
requestPayload: VisualExportRequest;
|
|
7515
6804
|
}
|
|
7516
6805
|
/**
|
|
7517
6806
|
*
|
|
7518
6807
|
* @export
|
|
7519
|
-
* @interface
|
|
6808
|
+
* @interface JsonApiAutomationOutDocument
|
|
7520
6809
|
*/
|
|
7521
|
-
export interface
|
|
6810
|
+
export interface JsonApiAutomationOutDocument {
|
|
7522
6811
|
/**
|
|
7523
6812
|
*
|
|
7524
|
-
* @type {
|
|
7525
|
-
* @memberof
|
|
6813
|
+
* @type {JsonApiAutomationOut}
|
|
6814
|
+
* @memberof JsonApiAutomationOutDocument
|
|
7526
6815
|
*/
|
|
7527
|
-
data:
|
|
6816
|
+
data: JsonApiAutomationOut;
|
|
6817
|
+
/**
|
|
6818
|
+
*
|
|
6819
|
+
* @type {ObjectLinks}
|
|
6820
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6821
|
+
*/
|
|
6822
|
+
links?: ObjectLinks;
|
|
6823
|
+
/**
|
|
6824
|
+
* Included resources
|
|
6825
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6826
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6827
|
+
*/
|
|
6828
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7528
6829
|
}
|
|
7529
6830
|
/**
|
|
7530
|
-
*
|
|
6831
|
+
* @type JsonApiAutomationOutIncludes
|
|
7531
6832
|
* @export
|
|
7532
|
-
* @interface JsonApiAutomationPatchRelationships
|
|
7533
6833
|
*/
|
|
7534
|
-
export
|
|
6834
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
6835
|
+
/**
|
|
6836
|
+
* A JSON:API document with a list of resources
|
|
6837
|
+
* @export
|
|
6838
|
+
* @interface JsonApiAutomationOutList
|
|
6839
|
+
*/
|
|
6840
|
+
export interface JsonApiAutomationOutList {
|
|
7535
6841
|
/**
|
|
7536
6842
|
*
|
|
7537
|
-
* @type {
|
|
7538
|
-
* @memberof
|
|
6843
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
6844
|
+
* @memberof JsonApiAutomationOutList
|
|
7539
6845
|
*/
|
|
7540
|
-
|
|
6846
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
7541
6847
|
/**
|
|
7542
6848
|
*
|
|
7543
|
-
* @type {
|
|
7544
|
-
* @memberof
|
|
6849
|
+
* @type {ListLinks}
|
|
6850
|
+
* @memberof JsonApiAutomationOutList
|
|
7545
6851
|
*/
|
|
7546
|
-
|
|
6852
|
+
links?: ListLinks;
|
|
7547
6853
|
/**
|
|
7548
6854
|
*
|
|
7549
|
-
* @type {
|
|
7550
|
-
* @memberof
|
|
6855
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6856
|
+
* @memberof JsonApiAutomationOutList
|
|
7551
6857
|
*/
|
|
7552
|
-
|
|
6858
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7553
6859
|
/**
|
|
7554
|
-
*
|
|
7555
|
-
* @type {
|
|
7556
|
-
* @memberof
|
|
6860
|
+
* Included resources
|
|
6861
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6862
|
+
* @memberof JsonApiAutomationOutList
|
|
7557
6863
|
*/
|
|
7558
|
-
|
|
6864
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
7559
6865
|
}
|
|
7560
6866
|
/**
|
|
7561
6867
|
*
|
|
7562
6868
|
* @export
|
|
7563
|
-
* @interface
|
|
6869
|
+
* @interface JsonApiAutomationOutRelationships
|
|
7564
6870
|
*/
|
|
7565
|
-
export interface
|
|
6871
|
+
export interface JsonApiAutomationOutRelationships {
|
|
7566
6872
|
/**
|
|
7567
6873
|
*
|
|
7568
|
-
* @type {
|
|
7569
|
-
* @memberof
|
|
6874
|
+
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
6875
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
7570
6876
|
*/
|
|
7571
|
-
|
|
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
|
|
6906
|
+
*/
|
|
6907
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
7572
6908
|
}
|
|
7573
6909
|
/**
|
|
7574
6910
|
*
|
|
7575
6911
|
* @export
|
|
7576
|
-
* @interface
|
|
6912
|
+
* @interface JsonApiAutomationOutRelationshipsExportDefinitions
|
|
7577
6913
|
*/
|
|
7578
|
-
export interface
|
|
6914
|
+
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
7579
6915
|
/**
|
|
7580
6916
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7581
6917
|
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
7582
|
-
* @memberof
|
|
6918
|
+
* @memberof JsonApiAutomationOutRelationshipsExportDefinitions
|
|
7583
6919
|
*/
|
|
7584
6920
|
data: Array<JsonApiExportDefinitionLinkage>;
|
|
7585
6921
|
}
|
|
7586
6922
|
/**
|
|
7587
6923
|
*
|
|
7588
6924
|
* @export
|
|
7589
|
-
* @interface
|
|
6925
|
+
* @interface JsonApiAutomationOutRelationshipsNotificationChannel
|
|
7590
6926
|
*/
|
|
7591
|
-
export interface
|
|
6927
|
+
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
7592
6928
|
/**
|
|
7593
6929
|
*
|
|
7594
6930
|
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
7595
|
-
* @memberof
|
|
6931
|
+
* @memberof JsonApiAutomationOutRelationshipsNotificationChannel
|
|
7596
6932
|
*/
|
|
7597
6933
|
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
7598
6934
|
}
|
|
7599
6935
|
/**
|
|
7600
6936
|
*
|
|
7601
6937
|
* @export
|
|
7602
|
-
* @interface
|
|
6938
|
+
* @interface JsonApiAutomationOutRelationshipsRecipients
|
|
7603
6939
|
*/
|
|
7604
|
-
export interface
|
|
6940
|
+
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
7605
6941
|
/**
|
|
7606
6942
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7607
6943
|
* @type {Array<JsonApiUserLinkage>}
|
|
7608
|
-
* @memberof
|
|
6944
|
+
* @memberof JsonApiAutomationOutRelationshipsRecipients
|
|
7609
6945
|
*/
|
|
7610
6946
|
data: Array<JsonApiUserLinkage>;
|
|
7611
6947
|
}
|
|
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
|
+
}
|
|
7612
7176
|
/**
|
|
7613
7177
|
* @type JsonApiAutomationToOneLinkage
|
|
7614
7178
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -7865,10 +7429,10 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
7865
7429
|
id: string;
|
|
7866
7430
|
/**
|
|
7867
7431
|
*
|
|
7868
|
-
* @type {
|
|
7432
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7869
7433
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
7870
7434
|
*/
|
|
7871
|
-
attributes?:
|
|
7435
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7872
7436
|
}
|
|
7873
7437
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
7874
7438
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -7907,34 +7471,15 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
7907
7471
|
id: string;
|
|
7908
7472
|
/**
|
|
7909
7473
|
*
|
|
7910
|
-
* @type {
|
|
7474
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7911
7475
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
7912
7476
|
*/
|
|
7913
|
-
attributes?:
|
|
7477
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7914
7478
|
}
|
|
7915
7479
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
7916
7480
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7917
7481
|
};
|
|
7918
7482
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = typeof JsonApiCookieSecurityConfigurationOutTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
7919
|
-
/**
|
|
7920
|
-
*
|
|
7921
|
-
* @export
|
|
7922
|
-
* @interface JsonApiCookieSecurityConfigurationOutAttributes
|
|
7923
|
-
*/
|
|
7924
|
-
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
7925
|
-
/**
|
|
7926
|
-
*
|
|
7927
|
-
* @type {string}
|
|
7928
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7929
|
-
*/
|
|
7930
|
-
lastRotation?: string;
|
|
7931
|
-
/**
|
|
7932
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7933
|
-
* @type {string}
|
|
7934
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7935
|
-
*/
|
|
7936
|
-
rotationInterval?: string;
|
|
7937
|
-
}
|
|
7938
7483
|
/**
|
|
7939
7484
|
*
|
|
7940
7485
|
* @export
|
|
@@ -7974,15 +7519,34 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
7974
7519
|
id: string;
|
|
7975
7520
|
/**
|
|
7976
7521
|
*
|
|
7977
|
-
* @type {
|
|
7522
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7978
7523
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
7979
7524
|
*/
|
|
7980
|
-
attributes?:
|
|
7525
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7981
7526
|
}
|
|
7982
7527
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
7983
7528
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7984
7529
|
};
|
|
7985
7530
|
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
|
+
}
|
|
7986
7550
|
/**
|
|
7987
7551
|
*
|
|
7988
7552
|
* @export
|
|
@@ -10483,10 +10047,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10483
10047
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10484
10048
|
/**
|
|
10485
10049
|
*
|
|
10486
|
-
* @type {
|
|
10050
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
10487
10051
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
10488
10052
|
*/
|
|
10489
|
-
analyticalDashboard?:
|
|
10053
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
10490
10054
|
/**
|
|
10491
10055
|
*
|
|
10492
10056
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -10506,6 +10070,19 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
10506
10070
|
*/
|
|
10507
10071
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
10508
10072
|
}
|
|
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
|
+
}
|
|
10509
10086
|
/**
|
|
10510
10087
|
*
|
|
10511
10088
|
* @export
|
|
@@ -10678,10 +10255,10 @@ export interface JsonApiExportDefinitionPatchRelationships {
|
|
|
10678
10255
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10679
10256
|
/**
|
|
10680
10257
|
*
|
|
10681
|
-
* @type {
|
|
10258
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
10682
10259
|
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
10683
10260
|
*/
|
|
10684
|
-
analyticalDashboard?:
|
|
10261
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
10685
10262
|
}
|
|
10686
10263
|
/**
|
|
10687
10264
|
* JSON:API representation of exportDefinition entity.
|
|
@@ -11742,10 +11319,10 @@ export interface JsonApiFilterViewIn {
|
|
|
11742
11319
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11743
11320
|
/**
|
|
11744
11321
|
*
|
|
11745
|
-
* @type {
|
|
11322
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11746
11323
|
* @memberof JsonApiFilterViewIn
|
|
11747
11324
|
*/
|
|
11748
|
-
relationships?:
|
|
11325
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11749
11326
|
}
|
|
11750
11327
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11751
11328
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11790,10 +11367,10 @@ export interface JsonApiFilterViewOut {
|
|
|
11790
11367
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11791
11368
|
/**
|
|
11792
11369
|
*
|
|
11793
|
-
* @type {
|
|
11370
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11794
11371
|
* @memberof JsonApiFilterViewOut
|
|
11795
11372
|
*/
|
|
11796
|
-
relationships?:
|
|
11373
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11797
11374
|
}
|
|
11798
11375
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11799
11376
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11903,6 +11480,25 @@ export interface JsonApiFilterViewOutList {
|
|
|
11903
11480
|
*/
|
|
11904
11481
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11905
11482
|
}
|
|
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
|
+
}
|
|
11906
11502
|
/**
|
|
11907
11503
|
*
|
|
11908
11504
|
* @export
|
|
@@ -11929,10 +11525,10 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11929
11525
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11930
11526
|
/**
|
|
11931
11527
|
*
|
|
11932
|
-
* @type {
|
|
11528
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11933
11529
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11934
11530
|
*/
|
|
11935
|
-
relationships?:
|
|
11531
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11936
11532
|
/**
|
|
11937
11533
|
*
|
|
11938
11534
|
* @type {ObjectLinks}
|
|
@@ -11970,10 +11566,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11970
11566
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11971
11567
|
/**
|
|
11972
11568
|
*
|
|
11973
|
-
* @type {
|
|
11569
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11974
11570
|
* @memberof JsonApiFilterViewPatch
|
|
11975
11571
|
*/
|
|
11976
|
-
relationships?:
|
|
11572
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11977
11573
|
}
|
|
11978
11574
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11979
11575
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -12035,25 +11631,6 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
12035
11631
|
*/
|
|
12036
11632
|
data: JsonApiFilterViewPatch;
|
|
12037
11633
|
}
|
|
12038
|
-
/**
|
|
12039
|
-
*
|
|
12040
|
-
* @export
|
|
12041
|
-
* @interface JsonApiFilterViewPatchRelationships
|
|
12042
|
-
*/
|
|
12043
|
-
export interface JsonApiFilterViewPatchRelationships {
|
|
12044
|
-
/**
|
|
12045
|
-
*
|
|
12046
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
12047
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
12048
|
-
*/
|
|
12049
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
12050
|
-
/**
|
|
12051
|
-
*
|
|
12052
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
12053
|
-
* @memberof JsonApiFilterViewPatchRelationships
|
|
12054
|
-
*/
|
|
12055
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
12056
|
-
}
|
|
12057
11634
|
/**
|
|
12058
11635
|
* JSON:API representation of identityProvider entity.
|
|
12059
11636
|
* @export
|
|
@@ -12981,7 +12558,6 @@ export interface JsonApiLlmEndpointInAttributes {
|
|
|
12981
12558
|
}
|
|
12982
12559
|
export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
|
|
12983
12560
|
readonly OPENAI: "OPENAI";
|
|
12984
|
-
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
12985
12561
|
};
|
|
12986
12562
|
export type JsonApiLlmEndpointInAttributesProviderEnum = typeof JsonApiLlmEndpointInAttributesProviderEnum[keyof typeof JsonApiLlmEndpointInAttributesProviderEnum];
|
|
12987
12563
|
/**
|
|
@@ -13065,7 +12641,6 @@ export interface JsonApiLlmEndpointOutAttributes {
|
|
|
13065
12641
|
}
|
|
13066
12642
|
export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
|
|
13067
12643
|
readonly OPENAI: "OPENAI";
|
|
13068
|
-
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
13069
12644
|
};
|
|
13070
12645
|
export type JsonApiLlmEndpointOutAttributesProviderEnum = typeof JsonApiLlmEndpointOutAttributesProviderEnum[keyof typeof JsonApiLlmEndpointOutAttributesProviderEnum];
|
|
13071
12646
|
/**
|
|
@@ -13221,7 +12796,6 @@ export interface JsonApiLlmEndpointPatchAttributes {
|
|
|
13221
12796
|
}
|
|
13222
12797
|
export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
|
|
13223
12798
|
readonly OPENAI: "OPENAI";
|
|
13224
|
-
readonly AZURE_OPENAI: "AZURE_OPENAI";
|
|
13225
12799
|
};
|
|
13226
12800
|
export type JsonApiLlmEndpointPatchAttributesProviderEnum = typeof JsonApiLlmEndpointPatchAttributesProviderEnum[keyof typeof JsonApiLlmEndpointPatchAttributesProviderEnum];
|
|
13227
12801
|
/**
|
|
@@ -14512,10 +14086,10 @@ export interface JsonApiOrganizationOutRelationships {
|
|
|
14512
14086
|
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14513
14087
|
/**
|
|
14514
14088
|
*
|
|
14515
|
-
* @type {
|
|
14089
|
+
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
14516
14090
|
* @memberof JsonApiOrganizationOutRelationships
|
|
14517
14091
|
*/
|
|
14518
|
-
identityProvider?:
|
|
14092
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
14519
14093
|
}
|
|
14520
14094
|
/**
|
|
14521
14095
|
*
|
|
@@ -14543,19 +14117,6 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
14543
14117
|
*/
|
|
14544
14118
|
data: JsonApiUserGroupToOneLinkage | null;
|
|
14545
14119
|
}
|
|
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
|
-
}
|
|
14559
14120
|
/**
|
|
14560
14121
|
* JSON:API representation of patching organization entity.
|
|
14561
14122
|
* @export
|
|
@@ -14694,10 +14255,23 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
14694
14255
|
export interface JsonApiOrganizationPatchRelationships {
|
|
14695
14256
|
/**
|
|
14696
14257
|
*
|
|
14697
|
-
* @type {
|
|
14258
|
+
* @type {JsonApiOrganizationPatchRelationshipsIdentityProvider}
|
|
14698
14259
|
* @memberof JsonApiOrganizationPatchRelationships
|
|
14699
14260
|
*/
|
|
14700
|
-
identityProvider?:
|
|
14261
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
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;
|
|
14701
14275
|
}
|
|
14702
14276
|
/**
|
|
14703
14277
|
* JSON:API representation of organizationSetting entity.
|
|
@@ -14719,10 +14293,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
14719
14293
|
id: string;
|
|
14720
14294
|
/**
|
|
14721
14295
|
*
|
|
14722
|
-
* @type {
|
|
14296
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
14723
14297
|
* @memberof JsonApiOrganizationSettingIn
|
|
14724
14298
|
*/
|
|
14725
|
-
attributes?:
|
|
14299
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
14726
14300
|
}
|
|
14727
14301
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
14728
14302
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14761,10 +14335,10 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
14761
14335
|
id: string;
|
|
14762
14336
|
/**
|
|
14763
14337
|
*
|
|
14764
|
-
* @type {
|
|
14338
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
14765
14339
|
* @memberof JsonApiOrganizationSettingOut
|
|
14766
14340
|
*/
|
|
14767
|
-
attributes?:
|
|
14341
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
14768
14342
|
}
|
|
14769
14343
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
14770
14344
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14834,10 +14408,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
14834
14408
|
id: string;
|
|
14835
14409
|
/**
|
|
14836
14410
|
*
|
|
14837
|
-
* @type {
|
|
14411
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
14838
14412
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
14839
14413
|
*/
|
|
14840
|
-
attributes?:
|
|
14414
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
14841
14415
|
/**
|
|
14842
14416
|
*
|
|
14843
14417
|
* @type {ObjectLinks}
|
|
@@ -14869,10 +14443,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
14869
14443
|
id: string;
|
|
14870
14444
|
/**
|
|
14871
14445
|
*
|
|
14872
|
-
* @type {
|
|
14446
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
14873
14447
|
* @memberof JsonApiOrganizationSettingPatch
|
|
14874
14448
|
*/
|
|
14875
|
-
attributes?:
|
|
14449
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
14876
14450
|
}
|
|
14877
14451
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
14878
14452
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -16291,62 +15865,15 @@ export interface JsonApiUserSettingIn {
|
|
|
16291
15865
|
id: string;
|
|
16292
15866
|
/**
|
|
16293
15867
|
*
|
|
16294
|
-
* @type {
|
|
15868
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16295
15869
|
* @memberof JsonApiUserSettingIn
|
|
16296
15870
|
*/
|
|
16297
|
-
attributes?:
|
|
15871
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16298
15872
|
}
|
|
16299
15873
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
16300
15874
|
readonly USER_SETTING: "userSetting";
|
|
16301
15875
|
};
|
|
16302
15876
|
export type JsonApiUserSettingInTypeEnum = typeof JsonApiUserSettingInTypeEnum[keyof typeof JsonApiUserSettingInTypeEnum];
|
|
16303
|
-
/**
|
|
16304
|
-
*
|
|
16305
|
-
* @export
|
|
16306
|
-
* @interface JsonApiUserSettingInAttributes
|
|
16307
|
-
*/
|
|
16308
|
-
export interface JsonApiUserSettingInAttributes {
|
|
16309
|
-
/**
|
|
16310
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
16311
|
-
* @type {object}
|
|
16312
|
-
* @memberof JsonApiUserSettingInAttributes
|
|
16313
|
-
*/
|
|
16314
|
-
content?: object;
|
|
16315
|
-
/**
|
|
16316
|
-
*
|
|
16317
|
-
* @type {string}
|
|
16318
|
-
* @memberof JsonApiUserSettingInAttributes
|
|
16319
|
-
*/
|
|
16320
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
16321
|
-
}
|
|
16322
|
-
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
16323
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
16324
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
16325
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
16326
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
16327
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
16328
|
-
readonly LOCALE: "LOCALE";
|
|
16329
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
16330
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
16331
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
16332
|
-
readonly WEEK_START: "WEEK_START";
|
|
16333
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
16334
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
16335
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
16336
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
16337
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
16338
|
-
readonly ALERT: "ALERT";
|
|
16339
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
16340
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
16341
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
16342
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
16343
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
16344
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
16345
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
16346
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
16347
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
16348
|
-
};
|
|
16349
|
-
export type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
16350
15877
|
/**
|
|
16351
15878
|
*
|
|
16352
15879
|
* @export
|
|
@@ -16380,15 +15907,62 @@ export interface JsonApiUserSettingOut {
|
|
|
16380
15907
|
id: string;
|
|
16381
15908
|
/**
|
|
16382
15909
|
*
|
|
16383
|
-
* @type {
|
|
15910
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16384
15911
|
* @memberof JsonApiUserSettingOut
|
|
16385
15912
|
*/
|
|
16386
|
-
attributes?:
|
|
15913
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16387
15914
|
}
|
|
16388
15915
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
16389
15916
|
readonly USER_SETTING: "userSetting";
|
|
16390
15917
|
};
|
|
16391
15918
|
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15919
|
+
/**
|
|
15920
|
+
*
|
|
15921
|
+
* @export
|
|
15922
|
+
* @interface JsonApiUserSettingOutAttributes
|
|
15923
|
+
*/
|
|
15924
|
+
export interface JsonApiUserSettingOutAttributes {
|
|
15925
|
+
/**
|
|
15926
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
15927
|
+
* @type {object}
|
|
15928
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
15929
|
+
*/
|
|
15930
|
+
content?: object;
|
|
15931
|
+
/**
|
|
15932
|
+
*
|
|
15933
|
+
* @type {string}
|
|
15934
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
15935
|
+
*/
|
|
15936
|
+
type?: JsonApiUserSettingOutAttributesTypeEnum;
|
|
15937
|
+
}
|
|
15938
|
+
export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
15939
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
15940
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15941
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
15942
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
15943
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
15944
|
+
readonly LOCALE: "LOCALE";
|
|
15945
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
15946
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
15947
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
15948
|
+
readonly WEEK_START: "WEEK_START";
|
|
15949
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
15950
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
15951
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
15952
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
15953
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
15954
|
+
readonly ALERT: "ALERT";
|
|
15955
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
15956
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
15957
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
15958
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
15959
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
15960
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
15961
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
15962
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
15963
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
15964
|
+
};
|
|
15965
|
+
export type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
16392
15966
|
/**
|
|
16393
15967
|
*
|
|
16394
15968
|
* @export
|
|
@@ -16453,10 +16027,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
16453
16027
|
id: string;
|
|
16454
16028
|
/**
|
|
16455
16029
|
*
|
|
16456
|
-
* @type {
|
|
16030
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16457
16031
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
16458
16032
|
*/
|
|
16459
|
-
attributes?:
|
|
16033
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
16460
16034
|
/**
|
|
16461
16035
|
*
|
|
16462
16036
|
* @type {ObjectLinks}
|
|
@@ -17320,16 +16894,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
17320
16894
|
id: string;
|
|
17321
16895
|
/**
|
|
17322
16896
|
*
|
|
17323
|
-
* @type {
|
|
16897
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
17324
16898
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17325
16899
|
*/
|
|
17326
|
-
attributes?:
|
|
16900
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
17327
16901
|
/**
|
|
17328
16902
|
*
|
|
17329
|
-
* @type {
|
|
16903
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
17330
16904
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
17331
16905
|
*/
|
|
17332
|
-
relationships?:
|
|
16906
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
17333
16907
|
}
|
|
17334
16908
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
17335
16909
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -17397,21 +16971,46 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
17397
16971
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17398
16972
|
/**
|
|
17399
16973
|
*
|
|
17400
|
-
* @type {
|
|
16974
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
17401
16975
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17402
16976
|
*/
|
|
17403
|
-
attributes?:
|
|
16977
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
17404
16978
|
/**
|
|
17405
16979
|
*
|
|
17406
|
-
* @type {
|
|
16980
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
17407
16981
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
17408
16982
|
*/
|
|
17409
|
-
relationships?:
|
|
16983
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
17410
16984
|
}
|
|
17411
16985
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
17412
16986
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17413
16987
|
};
|
|
17414
16988
|
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
|
+
}
|
|
17415
17014
|
/**
|
|
17416
17015
|
*
|
|
17417
17016
|
* @export
|
|
@@ -17468,6 +17067,32 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
17468
17067
|
*/
|
|
17469
17068
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
17470
17069
|
}
|
|
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
|
+
}
|
|
17471
17096
|
/**
|
|
17472
17097
|
*
|
|
17473
17098
|
* @export
|
|
@@ -17494,16 +17119,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
17494
17119
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17495
17120
|
/**
|
|
17496
17121
|
*
|
|
17497
|
-
* @type {
|
|
17122
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
17498
17123
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17499
17124
|
*/
|
|
17500
|
-
attributes?:
|
|
17125
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
17501
17126
|
/**
|
|
17502
17127
|
*
|
|
17503
|
-
* @type {
|
|
17128
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
17504
17129
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
17505
17130
|
*/
|
|
17506
|
-
relationships?:
|
|
17131
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
17507
17132
|
/**
|
|
17508
17133
|
*
|
|
17509
17134
|
* @type {ObjectLinks}
|
|
@@ -17535,46 +17160,21 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
17535
17160
|
id: string;
|
|
17536
17161
|
/**
|
|
17537
17162
|
*
|
|
17538
|
-
* @type {
|
|
17163
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
17539
17164
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17540
17165
|
*/
|
|
17541
|
-
attributes?:
|
|
17166
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
17542
17167
|
/**
|
|
17543
17168
|
*
|
|
17544
|
-
* @type {
|
|
17169
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
17545
17170
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
17546
17171
|
*/
|
|
17547
|
-
relationships?:
|
|
17172
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
17548
17173
|
}
|
|
17549
17174
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
17550
17175
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
17551
17176
|
};
|
|
17552
17177
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
17553
|
-
/**
|
|
17554
|
-
*
|
|
17555
|
-
* @export
|
|
17556
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17557
|
-
*/
|
|
17558
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
17559
|
-
/**
|
|
17560
|
-
*
|
|
17561
|
-
* @type {string}
|
|
17562
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17563
|
-
*/
|
|
17564
|
-
title?: string;
|
|
17565
|
-
/**
|
|
17566
|
-
*
|
|
17567
|
-
* @type {string}
|
|
17568
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17569
|
-
*/
|
|
17570
|
-
description?: string;
|
|
17571
|
-
/**
|
|
17572
|
-
*
|
|
17573
|
-
* @type {Array<string>}
|
|
17574
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
17575
|
-
*/
|
|
17576
|
-
filterValues?: Array<string>;
|
|
17577
|
-
}
|
|
17578
17178
|
/**
|
|
17579
17179
|
*
|
|
17580
17180
|
* @export
|
|
@@ -17588,32 +17188,6 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
17588
17188
|
*/
|
|
17589
17189
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
17590
17190
|
}
|
|
17591
|
-
/**
|
|
17592
|
-
*
|
|
17593
|
-
* @export
|
|
17594
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17595
|
-
*/
|
|
17596
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
17597
|
-
/**
|
|
17598
|
-
*
|
|
17599
|
-
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
17600
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
17601
|
-
*/
|
|
17602
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
17603
|
-
}
|
|
17604
|
-
/**
|
|
17605
|
-
*
|
|
17606
|
-
* @export
|
|
17607
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17608
|
-
*/
|
|
17609
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
17610
|
-
/**
|
|
17611
|
-
*
|
|
17612
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
17613
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
17614
|
-
*/
|
|
17615
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
17616
|
-
}
|
|
17617
17191
|
/**
|
|
17618
17192
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
17619
17193
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -18092,10 +17666,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
18092
17666
|
id: string;
|
|
18093
17667
|
/**
|
|
18094
17668
|
*
|
|
18095
|
-
* @type {
|
|
17669
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18096
17670
|
* @memberof JsonApiWorkspaceSettingIn
|
|
18097
17671
|
*/
|
|
18098
|
-
attributes?:
|
|
17672
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18099
17673
|
}
|
|
18100
17674
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
18101
17675
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18140,10 +17714,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
18140
17714
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18141
17715
|
/**
|
|
18142
17716
|
*
|
|
18143
|
-
* @type {
|
|
17717
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18144
17718
|
* @memberof JsonApiWorkspaceSettingOut
|
|
18145
17719
|
*/
|
|
18146
|
-
attributes?:
|
|
17720
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18147
17721
|
}
|
|
18148
17722
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
18149
17723
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18219,10 +17793,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
18219
17793
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
18220
17794
|
/**
|
|
18221
17795
|
*
|
|
18222
|
-
* @type {
|
|
17796
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18223
17797
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
18224
17798
|
*/
|
|
18225
|
-
attributes?:
|
|
17799
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18226
17800
|
/**
|
|
18227
17801
|
*
|
|
18228
17802
|
* @type {ObjectLinks}
|
|
@@ -18254,10 +17828,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
18254
17828
|
id: string;
|
|
18255
17829
|
/**
|
|
18256
17830
|
*
|
|
18257
|
-
* @type {
|
|
17831
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18258
17832
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
18259
17833
|
*/
|
|
18260
|
-
attributes?:
|
|
17834
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18261
17835
|
}
|
|
18262
17836
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
18263
17837
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18296,10 +17870,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
18296
17870
|
id?: string;
|
|
18297
17871
|
/**
|
|
18298
17872
|
*
|
|
18299
|
-
* @type {
|
|
17873
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
18300
17874
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
18301
17875
|
*/
|
|
18302
|
-
attributes?:
|
|
17876
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
18303
17877
|
}
|
|
18304
17878
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
18305
17879
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18713,19 +18287,6 @@ export declare const OrganizationPermissionAssignmentPermissionsEnum: {
|
|
|
18713
18287
|
readonly SELF_CREATE_TOKEN: "SELF_CREATE_TOKEN";
|
|
18714
18288
|
};
|
|
18715
18289
|
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
|
-
}
|
|
18729
18290
|
/**
|
|
18730
18291
|
*
|
|
18731
18292
|
* @export
|
|
@@ -20121,19 +19682,6 @@ export declare const SqlColumnDataTypeEnum: {
|
|
|
20121
19682
|
readonly BOOLEAN: "BOOLEAN";
|
|
20122
19683
|
};
|
|
20123
19684
|
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
|
-
}
|
|
20137
19685
|
/**
|
|
20138
19686
|
* Table override settings.
|
|
20139
19687
|
* @export
|
|
@@ -21680,14 +21228,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
21680
21228
|
* @throws {RequiredError}
|
|
21681
21229
|
*/
|
|
21682
21230
|
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>;
|
|
21691
21231
|
/**
|
|
21692
21232
|
*
|
|
21693
21233
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -21971,14 +21511,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
21971
21511
|
* @throws {RequiredError}
|
|
21972
21512
|
*/
|
|
21973
21513
|
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>>;
|
|
21982
21514
|
/**
|
|
21983
21515
|
*
|
|
21984
21516
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22244,14 +21776,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
22244
21776
|
* @throws {RequiredError}
|
|
22245
21777
|
*/
|
|
22246
21778
|
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>;
|
|
22255
21779
|
/**
|
|
22256
21780
|
*
|
|
22257
21781
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -22544,15 +22068,6 @@ export interface ActionsApiInterface {
|
|
|
22544
22068
|
* @memberof ActionsApiInterface
|
|
22545
22069
|
*/
|
|
22546
22070
|
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>;
|
|
22556
22071
|
/**
|
|
22557
22072
|
*
|
|
22558
22073
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -23018,19 +22533,6 @@ export interface ActionsApiSetTranslationsRequest {
|
|
|
23018
22533
|
*/
|
|
23019
22534
|
readonly xliff: Xliff;
|
|
23020
22535
|
}
|
|
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
|
-
}
|
|
23034
22536
|
/**
|
|
23035
22537
|
* Request parameters for unsubscribeAutomation operation in ActionsApi.
|
|
23036
22538
|
* @export
|
|
@@ -23348,15 +22850,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
23348
22850
|
* @memberof ActionsApi
|
|
23349
22851
|
*/
|
|
23350
22852
|
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>>;
|
|
23360
22853
|
/**
|
|
23361
22854
|
*
|
|
23362
22855
|
* @summary Unsubscribe from all automations in all workspaces
|
|
@@ -54456,94 +53949,6 @@ export declare class OptionsApi extends BaseAPI implements OptionsApiInterface {
|
|
|
54456
53949
|
*/
|
|
54457
53950
|
getAllOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
54458
53951
|
}
|
|
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
|
-
}
|
|
54547
53952
|
/**
|
|
54548
53953
|
* OrganizationControllerApi - axios parameter creator
|
|
54549
53954
|
* @export
|