@gooddata/api-client-tiger 10.29.0-alpha.2 → 10.29.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1350 -939
- package/esm/generated/afm-rest-api/api.d.ts +6 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +6 -1
- package/esm/generated/automation-json-api/api.d.ts +173 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +5 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +162 -0
- package/esm/generated/export-json-api/api.d.ts +6 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +6 -0
- package/esm/generated/metadata-json-api/api.d.ts +1099 -893
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +61 -42
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +7037 -6817
- package/esm/generated/scan-json-api/api.d.ts +1 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +1 -0
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +1 -0
- package/esm/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -12,6 +12,37 @@
|
|
|
12
12
|
import { Configuration } from "./configuration.js";
|
|
13
13
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from "axios";
|
|
14
14
|
import { RequestArgs, BaseAPI } from './base.js';
|
|
15
|
+
/**
|
|
16
|
+
* Top level executable entity. Combination of [A]ttributes, [F]ilters & [M]etrics.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface AFM
|
|
19
|
+
*/
|
|
20
|
+
export interface AFM {
|
|
21
|
+
/**
|
|
22
|
+
* Attributes to be used in the computation.
|
|
23
|
+
* @type {Array<AttributeItem>}
|
|
24
|
+
* @memberof AFM
|
|
25
|
+
*/
|
|
26
|
+
attributes: Array<AttributeItem>;
|
|
27
|
+
/**
|
|
28
|
+
* Various filter types to filter the execution result.
|
|
29
|
+
* @type {Array<FilterDefinition>}
|
|
30
|
+
* @memberof AFM
|
|
31
|
+
*/
|
|
32
|
+
filters: Array<FilterDefinition>;
|
|
33
|
+
/**
|
|
34
|
+
* Metrics to be computed.
|
|
35
|
+
* @type {Array<MeasureItem>}
|
|
36
|
+
* @memberof AFM
|
|
37
|
+
*/
|
|
38
|
+
measures: Array<MeasureItem>;
|
|
39
|
+
/**
|
|
40
|
+
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
41
|
+
* @type {Array<MeasureItem>}
|
|
42
|
+
* @memberof AFM
|
|
43
|
+
*/
|
|
44
|
+
auxMeasures?: Array<MeasureItem>;
|
|
45
|
+
}
|
|
15
46
|
/**
|
|
16
47
|
* A datetime filter specifying exact from and to values.
|
|
17
48
|
* @export
|
|
@@ -605,6 +636,19 @@ export interface AutomationMetadata {
|
|
|
605
636
|
*/
|
|
606
637
|
visibleFilters?: Array<VisibleFilter>;
|
|
607
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
*
|
|
641
|
+
* @export
|
|
642
|
+
* @interface AutomationRawExport
|
|
643
|
+
*/
|
|
644
|
+
export interface AutomationRawExport {
|
|
645
|
+
/**
|
|
646
|
+
*
|
|
647
|
+
* @type {RawExportRequest}
|
|
648
|
+
* @memberof AutomationRawExport
|
|
649
|
+
*/
|
|
650
|
+
requestPayload: RawExportRequest;
|
|
651
|
+
}
|
|
608
652
|
/**
|
|
609
653
|
*
|
|
610
654
|
* @export
|
|
@@ -1671,6 +1715,12 @@ export interface DeclarativeAutomation {
|
|
|
1671
1715
|
* @memberof DeclarativeAutomation
|
|
1672
1716
|
*/
|
|
1673
1717
|
imageExports?: Array<AutomationImageExport>;
|
|
1718
|
+
/**
|
|
1719
|
+
*
|
|
1720
|
+
* @type {Array<AutomationRawExport>}
|
|
1721
|
+
* @memberof DeclarativeAutomation
|
|
1722
|
+
*/
|
|
1723
|
+
rawExports?: Array<AutomationRawExport>;
|
|
1674
1724
|
/**
|
|
1675
1725
|
* External recipients of the automation action results.
|
|
1676
1726
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -2037,6 +2087,7 @@ export declare const DeclarativeDataSourceTypeEnum: {
|
|
|
2037
2087
|
readonly MYSQL: "MYSQL";
|
|
2038
2088
|
readonly MARIADB: "MARIADB";
|
|
2039
2089
|
readonly ORACLE: "ORACLE";
|
|
2090
|
+
readonly PINOT: "PINOT";
|
|
2040
2091
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
2041
2092
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
2042
2093
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
@@ -3329,9 +3380,12 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
3329
3380
|
readonly SEPARATORS: "SEPARATORS";
|
|
3330
3381
|
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
3331
3382
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
3383
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
3332
3384
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
3333
3385
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
3334
3386
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
3387
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
3388
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
3335
3389
|
};
|
|
3336
3390
|
export type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
|
|
3337
3391
|
/**
|
|
@@ -4375,6 +4429,25 @@ export declare const EntityIdentifierTypeEnum: {
|
|
|
4375
4429
|
readonly FILTER_VIEW: "filterView";
|
|
4376
4430
|
};
|
|
4377
4431
|
export type EntityIdentifierTypeEnum = typeof EntityIdentifierTypeEnum[keyof typeof EntityIdentifierTypeEnum];
|
|
4432
|
+
/**
|
|
4433
|
+
* Various settings affecting the process of AFM execution or its result
|
|
4434
|
+
* @export
|
|
4435
|
+
* @interface ExecutionSettings
|
|
4436
|
+
*/
|
|
4437
|
+
export interface ExecutionSettings {
|
|
4438
|
+
/**
|
|
4439
|
+
* Specifies the percentage of rows from fact datasets to use during computation. This feature is available only for workspaces that use a Vertica Data Source without table views.
|
|
4440
|
+
* @type {number}
|
|
4441
|
+
* @memberof ExecutionSettings
|
|
4442
|
+
*/
|
|
4443
|
+
dataSamplingPercentage?: number;
|
|
4444
|
+
/**
|
|
4445
|
+
* Specifies the timestamp of the execution from which relative filters are resolved. If not set, the current time is used.
|
|
4446
|
+
* @type {string}
|
|
4447
|
+
* @memberof ExecutionSettings
|
|
4448
|
+
*/
|
|
4449
|
+
timestamp?: string;
|
|
4450
|
+
}
|
|
4378
4451
|
/**
|
|
4379
4452
|
* @type ExportRequest
|
|
4380
4453
|
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
@@ -4836,15 +4909,52 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
4836
4909
|
id: string;
|
|
4837
4910
|
/**
|
|
4838
4911
|
*
|
|
4839
|
-
* @type {
|
|
4912
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
4840
4913
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
4841
4914
|
*/
|
|
4842
|
-
attributes:
|
|
4915
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
4843
4916
|
}
|
|
4844
4917
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
4845
4918
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
4846
4919
|
};
|
|
4847
4920
|
export type JsonApiAnalyticalDashboardInTypeEnum = typeof JsonApiAnalyticalDashboardInTypeEnum[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
4921
|
+
/**
|
|
4922
|
+
*
|
|
4923
|
+
* @export
|
|
4924
|
+
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
4925
|
+
*/
|
|
4926
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
4927
|
+
/**
|
|
4928
|
+
*
|
|
4929
|
+
* @type {string}
|
|
4930
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
4931
|
+
*/
|
|
4932
|
+
title?: string;
|
|
4933
|
+
/**
|
|
4934
|
+
*
|
|
4935
|
+
* @type {string}
|
|
4936
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
4937
|
+
*/
|
|
4938
|
+
description?: string;
|
|
4939
|
+
/**
|
|
4940
|
+
*
|
|
4941
|
+
* @type {Array<string>}
|
|
4942
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
4943
|
+
*/
|
|
4944
|
+
tags?: Array<string>;
|
|
4945
|
+
/**
|
|
4946
|
+
*
|
|
4947
|
+
* @type {boolean}
|
|
4948
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
4949
|
+
*/
|
|
4950
|
+
areRelationsValid?: boolean;
|
|
4951
|
+
/**
|
|
4952
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4953
|
+
* @type {object}
|
|
4954
|
+
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
4955
|
+
*/
|
|
4956
|
+
content: object;
|
|
4957
|
+
}
|
|
4848
4958
|
/**
|
|
4849
4959
|
*
|
|
4850
4960
|
* @export
|
|
@@ -5286,10 +5396,10 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
5286
5396
|
id?: string;
|
|
5287
5397
|
/**
|
|
5288
5398
|
*
|
|
5289
|
-
* @type {
|
|
5399
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
5290
5400
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
5291
5401
|
*/
|
|
5292
|
-
attributes:
|
|
5402
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5293
5403
|
}
|
|
5294
5404
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
5295
5405
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -6266,10 +6376,10 @@ export interface JsonApiAutomationInAttributes {
|
|
|
6266
6376
|
details?: any;
|
|
6267
6377
|
/**
|
|
6268
6378
|
*
|
|
6269
|
-
* @type {
|
|
6379
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
6270
6380
|
* @memberof JsonApiAutomationInAttributes
|
|
6271
6381
|
*/
|
|
6272
|
-
metadata?:
|
|
6382
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
6273
6383
|
/**
|
|
6274
6384
|
* Current state of the automation.
|
|
6275
6385
|
* @type {string}
|
|
@@ -6278,46 +6388,197 @@ export interface JsonApiAutomationInAttributes {
|
|
|
6278
6388
|
state?: JsonApiAutomationInAttributesStateEnum;
|
|
6279
6389
|
/**
|
|
6280
6390
|
*
|
|
6281
|
-
* @type {
|
|
6391
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
6392
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6393
|
+
*/
|
|
6394
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
6395
|
+
/**
|
|
6396
|
+
*
|
|
6397
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
6282
6398
|
* @memberof JsonApiAutomationInAttributes
|
|
6283
6399
|
*/
|
|
6284
|
-
|
|
6400
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
6285
6401
|
/**
|
|
6286
6402
|
*
|
|
6287
|
-
* @type {
|
|
6403
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
6288
6404
|
* @memberof JsonApiAutomationInAttributes
|
|
6289
6405
|
*/
|
|
6290
|
-
|
|
6406
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
6291
6407
|
/**
|
|
6292
6408
|
*
|
|
6293
|
-
* @type {Array<
|
|
6409
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
6294
6410
|
* @memberof JsonApiAutomationInAttributes
|
|
6295
6411
|
*/
|
|
6296
|
-
|
|
6412
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
6297
6413
|
/**
|
|
6298
6414
|
*
|
|
6299
|
-
* @type {Array<
|
|
6415
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
6300
6416
|
* @memberof JsonApiAutomationInAttributes
|
|
6301
6417
|
*/
|
|
6302
|
-
|
|
6418
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
6303
6419
|
/**
|
|
6304
6420
|
*
|
|
6305
|
-
* @type {Array<
|
|
6421
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
6306
6422
|
* @memberof JsonApiAutomationInAttributes
|
|
6307
6423
|
*/
|
|
6308
|
-
|
|
6424
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
6309
6425
|
/**
|
|
6310
6426
|
* External recipients of the automation action results.
|
|
6311
|
-
* @type {Array<
|
|
6427
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
6312
6428
|
* @memberof JsonApiAutomationInAttributes
|
|
6313
6429
|
*/
|
|
6314
|
-
externalRecipients?: Array<
|
|
6430
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
6315
6431
|
}
|
|
6316
6432
|
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
6317
6433
|
readonly ACTIVE: "ACTIVE";
|
|
6318
6434
|
readonly PAUSED: "PAUSED";
|
|
6319
6435
|
};
|
|
6320
6436
|
export type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
6437
|
+
/**
|
|
6438
|
+
*
|
|
6439
|
+
* @export
|
|
6440
|
+
* @interface JsonApiAutomationInAttributesAlert
|
|
6441
|
+
*/
|
|
6442
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
6443
|
+
/**
|
|
6444
|
+
*
|
|
6445
|
+
* @type {AlertAfm}
|
|
6446
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6447
|
+
*/
|
|
6448
|
+
execution: AlertAfm;
|
|
6449
|
+
/**
|
|
6450
|
+
*
|
|
6451
|
+
* @type {AlertCondition}
|
|
6452
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6453
|
+
*/
|
|
6454
|
+
condition: AlertCondition;
|
|
6455
|
+
/**
|
|
6456
|
+
* 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.
|
|
6457
|
+
* @type {string}
|
|
6458
|
+
* @memberof JsonApiAutomationInAttributesAlert
|
|
6459
|
+
*/
|
|
6460
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
6461
|
+
}
|
|
6462
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
6463
|
+
readonly ALWAYS: "ALWAYS";
|
|
6464
|
+
readonly ONCE: "ONCE";
|
|
6465
|
+
};
|
|
6466
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
6467
|
+
/**
|
|
6468
|
+
*
|
|
6469
|
+
* @export
|
|
6470
|
+
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
6471
|
+
*/
|
|
6472
|
+
export interface JsonApiAutomationInAttributesExternalRecipients {
|
|
6473
|
+
/**
|
|
6474
|
+
* E-mail address to send notifications from.
|
|
6475
|
+
* @type {string}
|
|
6476
|
+
* @memberof JsonApiAutomationInAttributesExternalRecipients
|
|
6477
|
+
*/
|
|
6478
|
+
email: string;
|
|
6479
|
+
}
|
|
6480
|
+
/**
|
|
6481
|
+
*
|
|
6482
|
+
* @export
|
|
6483
|
+
* @interface JsonApiAutomationInAttributesImageExports
|
|
6484
|
+
*/
|
|
6485
|
+
export interface JsonApiAutomationInAttributesImageExports {
|
|
6486
|
+
/**
|
|
6487
|
+
*
|
|
6488
|
+
* @type {ImageExportRequest}
|
|
6489
|
+
* @memberof JsonApiAutomationInAttributesImageExports
|
|
6490
|
+
*/
|
|
6491
|
+
requestPayload: ImageExportRequest;
|
|
6492
|
+
}
|
|
6493
|
+
/**
|
|
6494
|
+
* Additional information for the automation.
|
|
6495
|
+
* @export
|
|
6496
|
+
* @interface JsonApiAutomationInAttributesMetadata
|
|
6497
|
+
*/
|
|
6498
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
6499
|
+
/**
|
|
6500
|
+
*
|
|
6501
|
+
* @type {string}
|
|
6502
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
6503
|
+
*/
|
|
6504
|
+
widget?: string;
|
|
6505
|
+
/**
|
|
6506
|
+
*
|
|
6507
|
+
* @type {Array<VisibleFilter>}
|
|
6508
|
+
* @memberof JsonApiAutomationInAttributesMetadata
|
|
6509
|
+
*/
|
|
6510
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
6511
|
+
}
|
|
6512
|
+
/**
|
|
6513
|
+
*
|
|
6514
|
+
* @export
|
|
6515
|
+
* @interface JsonApiAutomationInAttributesRawExports
|
|
6516
|
+
*/
|
|
6517
|
+
export interface JsonApiAutomationInAttributesRawExports {
|
|
6518
|
+
/**
|
|
6519
|
+
*
|
|
6520
|
+
* @type {RawExportRequest}
|
|
6521
|
+
* @memberof JsonApiAutomationInAttributesRawExports
|
|
6522
|
+
*/
|
|
6523
|
+
requestPayload: RawExportRequest;
|
|
6524
|
+
}
|
|
6525
|
+
/**
|
|
6526
|
+
*
|
|
6527
|
+
* @export
|
|
6528
|
+
* @interface JsonApiAutomationInAttributesSchedule
|
|
6529
|
+
*/
|
|
6530
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
6531
|
+
/**
|
|
6532
|
+
* 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.
|
|
6533
|
+
* @type {string}
|
|
6534
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6535
|
+
*/
|
|
6536
|
+
cron: string;
|
|
6537
|
+
/**
|
|
6538
|
+
* Human-readable description of the cron expression.
|
|
6539
|
+
* @type {string}
|
|
6540
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6541
|
+
*/
|
|
6542
|
+
cronDescription?: string;
|
|
6543
|
+
/**
|
|
6544
|
+
* Timezone in which the schedule is defined.
|
|
6545
|
+
* @type {string}
|
|
6546
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6547
|
+
*/
|
|
6548
|
+
timezone: string;
|
|
6549
|
+
/**
|
|
6550
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6551
|
+
* @type {string}
|
|
6552
|
+
* @memberof JsonApiAutomationInAttributesSchedule
|
|
6553
|
+
*/
|
|
6554
|
+
firstRun?: string;
|
|
6555
|
+
}
|
|
6556
|
+
/**
|
|
6557
|
+
*
|
|
6558
|
+
* @export
|
|
6559
|
+
* @interface JsonApiAutomationInAttributesTabularExports
|
|
6560
|
+
*/
|
|
6561
|
+
export interface JsonApiAutomationInAttributesTabularExports {
|
|
6562
|
+
/**
|
|
6563
|
+
*
|
|
6564
|
+
* @type {TabularExportRequest}
|
|
6565
|
+
* @memberof JsonApiAutomationInAttributesTabularExports
|
|
6566
|
+
*/
|
|
6567
|
+
requestPayload: TabularExportRequest;
|
|
6568
|
+
}
|
|
6569
|
+
/**
|
|
6570
|
+
*
|
|
6571
|
+
* @export
|
|
6572
|
+
* @interface JsonApiAutomationInAttributesVisualExports
|
|
6573
|
+
*/
|
|
6574
|
+
export interface JsonApiAutomationInAttributesVisualExports {
|
|
6575
|
+
/**
|
|
6576
|
+
*
|
|
6577
|
+
* @type {VisualExportRequest}
|
|
6578
|
+
* @memberof JsonApiAutomationInAttributesVisualExports
|
|
6579
|
+
*/
|
|
6580
|
+
requestPayload: VisualExportRequest;
|
|
6581
|
+
}
|
|
6321
6582
|
/**
|
|
6322
6583
|
*
|
|
6323
6584
|
* @export
|
|
@@ -6339,28 +6600,80 @@ export interface JsonApiAutomationInDocument {
|
|
|
6339
6600
|
export interface JsonApiAutomationInRelationships {
|
|
6340
6601
|
/**
|
|
6341
6602
|
*
|
|
6342
|
-
* @type {
|
|
6603
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
6343
6604
|
* @memberof JsonApiAutomationInRelationships
|
|
6344
6605
|
*/
|
|
6345
|
-
notificationChannel?:
|
|
6606
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
6346
6607
|
/**
|
|
6347
6608
|
*
|
|
6348
|
-
* @type {
|
|
6609
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
6349
6610
|
* @memberof JsonApiAutomationInRelationships
|
|
6350
6611
|
*/
|
|
6351
|
-
analyticalDashboard?:
|
|
6612
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
6352
6613
|
/**
|
|
6353
6614
|
*
|
|
6354
|
-
* @type {
|
|
6615
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
6355
6616
|
* @memberof JsonApiAutomationInRelationships
|
|
6356
6617
|
*/
|
|
6357
|
-
exportDefinitions?:
|
|
6618
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
6358
6619
|
/**
|
|
6359
6620
|
*
|
|
6360
|
-
* @type {
|
|
6621
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
6361
6622
|
* @memberof JsonApiAutomationInRelationships
|
|
6362
6623
|
*/
|
|
6363
|
-
recipients?:
|
|
6624
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
6625
|
+
}
|
|
6626
|
+
/**
|
|
6627
|
+
*
|
|
6628
|
+
* @export
|
|
6629
|
+
* @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
6630
|
+
*/
|
|
6631
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
6632
|
+
/**
|
|
6633
|
+
*
|
|
6634
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
6635
|
+
* @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
6636
|
+
*/
|
|
6637
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
6638
|
+
}
|
|
6639
|
+
/**
|
|
6640
|
+
*
|
|
6641
|
+
* @export
|
|
6642
|
+
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
6643
|
+
*/
|
|
6644
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
6645
|
+
/**
|
|
6646
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6647
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6648
|
+
* @memberof JsonApiAutomationInRelationshipsExportDefinitions
|
|
6649
|
+
*/
|
|
6650
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6651
|
+
}
|
|
6652
|
+
/**
|
|
6653
|
+
*
|
|
6654
|
+
* @export
|
|
6655
|
+
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
6656
|
+
*/
|
|
6657
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
6658
|
+
/**
|
|
6659
|
+
*
|
|
6660
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6661
|
+
* @memberof JsonApiAutomationInRelationshipsNotificationChannel
|
|
6662
|
+
*/
|
|
6663
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6664
|
+
}
|
|
6665
|
+
/**
|
|
6666
|
+
*
|
|
6667
|
+
* @export
|
|
6668
|
+
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
6669
|
+
*/
|
|
6670
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
6671
|
+
/**
|
|
6672
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6673
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
6674
|
+
* @memberof JsonApiAutomationInRelationshipsRecipients
|
|
6675
|
+
*/
|
|
6676
|
+
data: Array<JsonApiUserLinkage>;
|
|
6364
6677
|
}
|
|
6365
6678
|
/**
|
|
6366
6679
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
@@ -6464,10 +6777,10 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6464
6777
|
details?: any;
|
|
6465
6778
|
/**
|
|
6466
6779
|
*
|
|
6467
|
-
* @type {
|
|
6780
|
+
* @type {JsonApiAutomationInAttributesMetadata}
|
|
6468
6781
|
* @memberof JsonApiAutomationOutAttributes
|
|
6469
6782
|
*/
|
|
6470
|
-
metadata?:
|
|
6783
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
6471
6784
|
/**
|
|
6472
6785
|
* Current state of the automation.
|
|
6473
6786
|
* @type {string}
|
|
@@ -6476,40 +6789,46 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6476
6789
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6477
6790
|
/**
|
|
6478
6791
|
*
|
|
6479
|
-
* @type {
|
|
6792
|
+
* @type {JsonApiAutomationInAttributesSchedule}
|
|
6793
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6794
|
+
*/
|
|
6795
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
6796
|
+
/**
|
|
6797
|
+
*
|
|
6798
|
+
* @type {JsonApiAutomationInAttributesAlert}
|
|
6480
6799
|
* @memberof JsonApiAutomationOutAttributes
|
|
6481
6800
|
*/
|
|
6482
|
-
|
|
6801
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
6483
6802
|
/**
|
|
6484
6803
|
*
|
|
6485
|
-
* @type {
|
|
6804
|
+
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
6486
6805
|
* @memberof JsonApiAutomationOutAttributes
|
|
6487
6806
|
*/
|
|
6488
|
-
|
|
6807
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
6489
6808
|
/**
|
|
6490
6809
|
*
|
|
6491
|
-
* @type {Array<
|
|
6810
|
+
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
6492
6811
|
* @memberof JsonApiAutomationOutAttributes
|
|
6493
6812
|
*/
|
|
6494
|
-
|
|
6813
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
6495
6814
|
/**
|
|
6496
6815
|
*
|
|
6497
|
-
* @type {Array<
|
|
6816
|
+
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
6498
6817
|
* @memberof JsonApiAutomationOutAttributes
|
|
6499
6818
|
*/
|
|
6500
|
-
|
|
6819
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
6501
6820
|
/**
|
|
6502
6821
|
*
|
|
6503
|
-
* @type {Array<
|
|
6822
|
+
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
6504
6823
|
* @memberof JsonApiAutomationOutAttributes
|
|
6505
6824
|
*/
|
|
6506
|
-
|
|
6825
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
6507
6826
|
/**
|
|
6508
6827
|
* External recipients of the automation action results.
|
|
6509
|
-
* @type {Array<
|
|
6828
|
+
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
6510
6829
|
* @memberof JsonApiAutomationOutAttributes
|
|
6511
6830
|
*/
|
|
6512
|
-
externalRecipients?: Array<
|
|
6831
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
6513
6832
|
/**
|
|
6514
6833
|
*
|
|
6515
6834
|
* @type {string}
|
|
@@ -6531,162 +6850,30 @@ export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOu
|
|
|
6531
6850
|
/**
|
|
6532
6851
|
*
|
|
6533
6852
|
* @export
|
|
6534
|
-
* @interface
|
|
6853
|
+
* @interface JsonApiAutomationOutDocument
|
|
6535
6854
|
*/
|
|
6536
|
-
export interface
|
|
6855
|
+
export interface JsonApiAutomationOutDocument {
|
|
6537
6856
|
/**
|
|
6538
6857
|
*
|
|
6539
|
-
* @type {
|
|
6540
|
-
* @memberof
|
|
6858
|
+
* @type {JsonApiAutomationOut}
|
|
6859
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6541
6860
|
*/
|
|
6542
|
-
|
|
6861
|
+
data: JsonApiAutomationOut;
|
|
6543
6862
|
/**
|
|
6544
6863
|
*
|
|
6545
|
-
* @type {
|
|
6546
|
-
* @memberof
|
|
6864
|
+
* @type {ObjectLinks}
|
|
6865
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6547
6866
|
*/
|
|
6548
|
-
|
|
6867
|
+
links?: ObjectLinks;
|
|
6549
6868
|
/**
|
|
6550
|
-
*
|
|
6551
|
-
* @type {
|
|
6552
|
-
* @memberof
|
|
6869
|
+
* Included resources
|
|
6870
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6871
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6553
6872
|
*/
|
|
6554
|
-
|
|
6873
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
6555
6874
|
}
|
|
6556
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
6557
|
-
readonly ALWAYS: "ALWAYS";
|
|
6558
|
-
readonly ONCE: "ONCE";
|
|
6559
|
-
};
|
|
6560
|
-
export type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
6561
6875
|
/**
|
|
6562
|
-
*
|
|
6563
|
-
* @export
|
|
6564
|
-
* @interface JsonApiAutomationOutAttributesExternalRecipients
|
|
6565
|
-
*/
|
|
6566
|
-
export interface JsonApiAutomationOutAttributesExternalRecipients {
|
|
6567
|
-
/**
|
|
6568
|
-
* E-mail address to send notifications from.
|
|
6569
|
-
* @type {string}
|
|
6570
|
-
* @memberof JsonApiAutomationOutAttributesExternalRecipients
|
|
6571
|
-
*/
|
|
6572
|
-
email: string;
|
|
6573
|
-
}
|
|
6574
|
-
/**
|
|
6575
|
-
*
|
|
6576
|
-
* @export
|
|
6577
|
-
* @interface JsonApiAutomationOutAttributesImageExports
|
|
6578
|
-
*/
|
|
6579
|
-
export interface JsonApiAutomationOutAttributesImageExports {
|
|
6580
|
-
/**
|
|
6581
|
-
*
|
|
6582
|
-
* @type {ImageExportRequest}
|
|
6583
|
-
* @memberof JsonApiAutomationOutAttributesImageExports
|
|
6584
|
-
*/
|
|
6585
|
-
requestPayload: ImageExportRequest;
|
|
6586
|
-
}
|
|
6587
|
-
/**
|
|
6588
|
-
* Additional information for the automation.
|
|
6589
|
-
* @export
|
|
6590
|
-
* @interface JsonApiAutomationOutAttributesMetadata
|
|
6591
|
-
*/
|
|
6592
|
-
export interface JsonApiAutomationOutAttributesMetadata {
|
|
6593
|
-
/**
|
|
6594
|
-
*
|
|
6595
|
-
* @type {string}
|
|
6596
|
-
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6597
|
-
*/
|
|
6598
|
-
widget?: string;
|
|
6599
|
-
/**
|
|
6600
|
-
*
|
|
6601
|
-
* @type {Array<VisibleFilter>}
|
|
6602
|
-
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6603
|
-
*/
|
|
6604
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
6605
|
-
}
|
|
6606
|
-
/**
|
|
6607
|
-
*
|
|
6608
|
-
* @export
|
|
6609
|
-
* @interface JsonApiAutomationOutAttributesSchedule
|
|
6610
|
-
*/
|
|
6611
|
-
export interface JsonApiAutomationOutAttributesSchedule {
|
|
6612
|
-
/**
|
|
6613
|
-
* 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.
|
|
6614
|
-
* @type {string}
|
|
6615
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6616
|
-
*/
|
|
6617
|
-
cron: string;
|
|
6618
|
-
/**
|
|
6619
|
-
* Human-readable description of the cron expression.
|
|
6620
|
-
* @type {string}
|
|
6621
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6622
|
-
*/
|
|
6623
|
-
cronDescription?: string;
|
|
6624
|
-
/**
|
|
6625
|
-
* Timezone in which the schedule is defined.
|
|
6626
|
-
* @type {string}
|
|
6627
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6628
|
-
*/
|
|
6629
|
-
timezone: string;
|
|
6630
|
-
/**
|
|
6631
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6632
|
-
* @type {string}
|
|
6633
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6634
|
-
*/
|
|
6635
|
-
firstRun?: string;
|
|
6636
|
-
}
|
|
6637
|
-
/**
|
|
6638
|
-
*
|
|
6639
|
-
* @export
|
|
6640
|
-
* @interface JsonApiAutomationOutAttributesTabularExports
|
|
6641
|
-
*/
|
|
6642
|
-
export interface JsonApiAutomationOutAttributesTabularExports {
|
|
6643
|
-
/**
|
|
6644
|
-
*
|
|
6645
|
-
* @type {TabularExportRequest}
|
|
6646
|
-
* @memberof JsonApiAutomationOutAttributesTabularExports
|
|
6647
|
-
*/
|
|
6648
|
-
requestPayload: TabularExportRequest;
|
|
6649
|
-
}
|
|
6650
|
-
/**
|
|
6651
|
-
*
|
|
6652
|
-
* @export
|
|
6653
|
-
* @interface JsonApiAutomationOutAttributesVisualExports
|
|
6654
|
-
*/
|
|
6655
|
-
export interface JsonApiAutomationOutAttributesVisualExports {
|
|
6656
|
-
/**
|
|
6657
|
-
*
|
|
6658
|
-
* @type {VisualExportRequest}
|
|
6659
|
-
* @memberof JsonApiAutomationOutAttributesVisualExports
|
|
6660
|
-
*/
|
|
6661
|
-
requestPayload: VisualExportRequest;
|
|
6662
|
-
}
|
|
6663
|
-
/**
|
|
6664
|
-
*
|
|
6665
|
-
* @export
|
|
6666
|
-
* @interface JsonApiAutomationOutDocument
|
|
6667
|
-
*/
|
|
6668
|
-
export interface JsonApiAutomationOutDocument {
|
|
6669
|
-
/**
|
|
6670
|
-
*
|
|
6671
|
-
* @type {JsonApiAutomationOut}
|
|
6672
|
-
* @memberof JsonApiAutomationOutDocument
|
|
6673
|
-
*/
|
|
6674
|
-
data: JsonApiAutomationOut;
|
|
6675
|
-
/**
|
|
6676
|
-
*
|
|
6677
|
-
* @type {ObjectLinks}
|
|
6678
|
-
* @memberof JsonApiAutomationOutDocument
|
|
6679
|
-
*/
|
|
6680
|
-
links?: ObjectLinks;
|
|
6681
|
-
/**
|
|
6682
|
-
* Included resources
|
|
6683
|
-
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6684
|
-
* @memberof JsonApiAutomationOutDocument
|
|
6685
|
-
*/
|
|
6686
|
-
included?: Array<JsonApiAutomationOutIncludes>;
|
|
6687
|
-
}
|
|
6688
|
-
/**
|
|
6689
|
-
* @type JsonApiAutomationOutIncludes
|
|
6876
|
+
* @type JsonApiAutomationOutIncludes
|
|
6690
6877
|
* @export
|
|
6691
6878
|
*/
|
|
6692
6879
|
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
@@ -6729,16 +6916,16 @@ export interface JsonApiAutomationOutList {
|
|
|
6729
6916
|
export interface JsonApiAutomationOutRelationships {
|
|
6730
6917
|
/**
|
|
6731
6918
|
*
|
|
6732
|
-
* @type {
|
|
6919
|
+
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
6733
6920
|
* @memberof JsonApiAutomationOutRelationships
|
|
6734
6921
|
*/
|
|
6735
|
-
notificationChannel?:
|
|
6922
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
6736
6923
|
/**
|
|
6737
6924
|
*
|
|
6738
|
-
* @type {
|
|
6925
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
6739
6926
|
* @memberof JsonApiAutomationOutRelationships
|
|
6740
6927
|
*/
|
|
6741
|
-
analyticalDashboard?:
|
|
6928
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
6742
6929
|
/**
|
|
6743
6930
|
*
|
|
6744
6931
|
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
@@ -6753,55 +6940,16 @@ export interface JsonApiAutomationOutRelationships {
|
|
|
6753
6940
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6754
6941
|
/**
|
|
6755
6942
|
*
|
|
6756
|
-
* @type {
|
|
6943
|
+
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
6757
6944
|
* @memberof JsonApiAutomationOutRelationships
|
|
6758
6945
|
*/
|
|
6759
|
-
exportDefinitions?:
|
|
6946
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
6760
6947
|
/**
|
|
6761
6948
|
*
|
|
6762
|
-
* @type {
|
|
6949
|
+
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
6763
6950
|
* @memberof JsonApiAutomationOutRelationships
|
|
6764
6951
|
*/
|
|
6765
|
-
recipients?:
|
|
6766
|
-
}
|
|
6767
|
-
/**
|
|
6768
|
-
*
|
|
6769
|
-
* @export
|
|
6770
|
-
* @interface JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6771
|
-
*/
|
|
6772
|
-
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
6773
|
-
/**
|
|
6774
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6775
|
-
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6776
|
-
* @memberof JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6777
|
-
*/
|
|
6778
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6779
|
-
}
|
|
6780
|
-
/**
|
|
6781
|
-
*
|
|
6782
|
-
* @export
|
|
6783
|
-
* @interface JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6784
|
-
*/
|
|
6785
|
-
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
6786
|
-
/**
|
|
6787
|
-
*
|
|
6788
|
-
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6789
|
-
* @memberof JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6790
|
-
*/
|
|
6791
|
-
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6792
|
-
}
|
|
6793
|
-
/**
|
|
6794
|
-
*
|
|
6795
|
-
* @export
|
|
6796
|
-
* @interface JsonApiAutomationOutRelationshipsRecipients
|
|
6797
|
-
*/
|
|
6798
|
-
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
6799
|
-
/**
|
|
6800
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6801
|
-
* @type {Array<JsonApiUserLinkage>}
|
|
6802
|
-
* @memberof JsonApiAutomationOutRelationshipsRecipients
|
|
6803
|
-
*/
|
|
6804
|
-
data: Array<JsonApiUserLinkage>;
|
|
6952
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
6805
6953
|
}
|
|
6806
6954
|
/**
|
|
6807
6955
|
*
|
|
@@ -7523,15 +7671,34 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
7523
7671
|
id: string;
|
|
7524
7672
|
/**
|
|
7525
7673
|
*
|
|
7526
|
-
* @type {
|
|
7674
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7527
7675
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
7528
7676
|
*/
|
|
7529
|
-
attributes:
|
|
7677
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7530
7678
|
}
|
|
7531
7679
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
7532
7680
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
7533
7681
|
};
|
|
7534
7682
|
export type JsonApiCustomApplicationSettingInTypeEnum = typeof JsonApiCustomApplicationSettingInTypeEnum[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
7683
|
+
/**
|
|
7684
|
+
*
|
|
7685
|
+
* @export
|
|
7686
|
+
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
7687
|
+
*/
|
|
7688
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
7689
|
+
/**
|
|
7690
|
+
*
|
|
7691
|
+
* @type {string}
|
|
7692
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
7693
|
+
*/
|
|
7694
|
+
applicationName: string;
|
|
7695
|
+
/**
|
|
7696
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7697
|
+
* @type {object}
|
|
7698
|
+
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
7699
|
+
*/
|
|
7700
|
+
content: object;
|
|
7701
|
+
}
|
|
7535
7702
|
/**
|
|
7536
7703
|
*
|
|
7537
7704
|
* @export
|
|
@@ -7571,34 +7738,15 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
7571
7738
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7572
7739
|
/**
|
|
7573
7740
|
*
|
|
7574
|
-
* @type {
|
|
7741
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7575
7742
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
7576
7743
|
*/
|
|
7577
|
-
attributes:
|
|
7744
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7578
7745
|
}
|
|
7579
7746
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
7580
7747
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
7581
7748
|
};
|
|
7582
7749
|
export type JsonApiCustomApplicationSettingOutTypeEnum = typeof JsonApiCustomApplicationSettingOutTypeEnum[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
7583
|
-
/**
|
|
7584
|
-
*
|
|
7585
|
-
* @export
|
|
7586
|
-
* @interface JsonApiCustomApplicationSettingOutAttributes
|
|
7587
|
-
*/
|
|
7588
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
7589
|
-
/**
|
|
7590
|
-
*
|
|
7591
|
-
* @type {string}
|
|
7592
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
7593
|
-
*/
|
|
7594
|
-
applicationName: string;
|
|
7595
|
-
/**
|
|
7596
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7597
|
-
* @type {object}
|
|
7598
|
-
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
7599
|
-
*/
|
|
7600
|
-
content: object;
|
|
7601
|
-
}
|
|
7602
7750
|
/**
|
|
7603
7751
|
*
|
|
7604
7752
|
* @export
|
|
@@ -7669,10 +7817,10 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
7669
7817
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7670
7818
|
/**
|
|
7671
7819
|
*
|
|
7672
|
-
* @type {
|
|
7820
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7673
7821
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
7674
7822
|
*/
|
|
7675
|
-
attributes:
|
|
7823
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7676
7824
|
/**
|
|
7677
7825
|
*
|
|
7678
7826
|
* @type {ObjectLinks}
|
|
@@ -7765,10 +7913,10 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
7765
7913
|
id?: string;
|
|
7766
7914
|
/**
|
|
7767
7915
|
*
|
|
7768
|
-
* @type {
|
|
7916
|
+
* @type {JsonApiCustomApplicationSettingInAttributes}
|
|
7769
7917
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
7770
7918
|
*/
|
|
7771
|
-
attributes:
|
|
7919
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
7772
7920
|
}
|
|
7773
7921
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
7774
7922
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -7807,15 +7955,52 @@ export interface JsonApiDashboardPluginIn {
|
|
|
7807
7955
|
id: string;
|
|
7808
7956
|
/**
|
|
7809
7957
|
*
|
|
7810
|
-
* @type {
|
|
7958
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
7811
7959
|
* @memberof JsonApiDashboardPluginIn
|
|
7812
7960
|
*/
|
|
7813
|
-
attributes?:
|
|
7961
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
7814
7962
|
}
|
|
7815
7963
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
7816
7964
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
7817
7965
|
};
|
|
7818
7966
|
export type JsonApiDashboardPluginInTypeEnum = typeof JsonApiDashboardPluginInTypeEnum[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
7967
|
+
/**
|
|
7968
|
+
*
|
|
7969
|
+
* @export
|
|
7970
|
+
* @interface JsonApiDashboardPluginInAttributes
|
|
7971
|
+
*/
|
|
7972
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
7973
|
+
/**
|
|
7974
|
+
*
|
|
7975
|
+
* @type {string}
|
|
7976
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
7977
|
+
*/
|
|
7978
|
+
title?: string;
|
|
7979
|
+
/**
|
|
7980
|
+
*
|
|
7981
|
+
* @type {string}
|
|
7982
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
7983
|
+
*/
|
|
7984
|
+
description?: string;
|
|
7985
|
+
/**
|
|
7986
|
+
*
|
|
7987
|
+
* @type {Array<string>}
|
|
7988
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
7989
|
+
*/
|
|
7990
|
+
tags?: Array<string>;
|
|
7991
|
+
/**
|
|
7992
|
+
*
|
|
7993
|
+
* @type {boolean}
|
|
7994
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
7995
|
+
*/
|
|
7996
|
+
areRelationsValid?: boolean;
|
|
7997
|
+
/**
|
|
7998
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
7999
|
+
* @type {object}
|
|
8000
|
+
* @memberof JsonApiDashboardPluginInAttributes
|
|
8001
|
+
*/
|
|
8002
|
+
content?: object;
|
|
8003
|
+
}
|
|
7819
8004
|
/**
|
|
7820
8005
|
*
|
|
7821
8006
|
* @export
|
|
@@ -8084,10 +8269,10 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
8084
8269
|
id: string;
|
|
8085
8270
|
/**
|
|
8086
8271
|
*
|
|
8087
|
-
* @type {
|
|
8272
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8088
8273
|
* @memberof JsonApiDashboardPluginPatch
|
|
8089
8274
|
*/
|
|
8090
|
-
attributes?:
|
|
8275
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8091
8276
|
}
|
|
8092
8277
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
8093
8278
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -8126,52 +8311,15 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
8126
8311
|
id?: string;
|
|
8127
8312
|
/**
|
|
8128
8313
|
*
|
|
8129
|
-
* @type {
|
|
8314
|
+
* @type {JsonApiDashboardPluginInAttributes}
|
|
8130
8315
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
8131
8316
|
*/
|
|
8132
|
-
attributes?:
|
|
8317
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
8133
8318
|
}
|
|
8134
8319
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
8135
8320
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8136
8321
|
};
|
|
8137
8322
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = typeof JsonApiDashboardPluginPostOptionalIdTypeEnum[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
8138
|
-
/**
|
|
8139
|
-
*
|
|
8140
|
-
* @export
|
|
8141
|
-
* @interface JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8142
|
-
*/
|
|
8143
|
-
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
8144
|
-
/**
|
|
8145
|
-
*
|
|
8146
|
-
* @type {string}
|
|
8147
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8148
|
-
*/
|
|
8149
|
-
title?: string;
|
|
8150
|
-
/**
|
|
8151
|
-
*
|
|
8152
|
-
* @type {string}
|
|
8153
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8154
|
-
*/
|
|
8155
|
-
description?: string;
|
|
8156
|
-
/**
|
|
8157
|
-
*
|
|
8158
|
-
* @type {Array<string>}
|
|
8159
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8160
|
-
*/
|
|
8161
|
-
tags?: Array<string>;
|
|
8162
|
-
/**
|
|
8163
|
-
*
|
|
8164
|
-
* @type {boolean}
|
|
8165
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8166
|
-
*/
|
|
8167
|
-
areRelationsValid?: boolean;
|
|
8168
|
-
/**
|
|
8169
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8170
|
-
* @type {object}
|
|
8171
|
-
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8172
|
-
*/
|
|
8173
|
-
content?: object;
|
|
8174
|
-
}
|
|
8175
8323
|
/**
|
|
8176
8324
|
*
|
|
8177
8325
|
* @export
|
|
@@ -8265,6 +8413,7 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
|
|
|
8265
8413
|
readonly MYSQL: "MYSQL";
|
|
8266
8414
|
readonly MARIADB: "MARIADB";
|
|
8267
8415
|
readonly ORACLE: "ORACLE";
|
|
8416
|
+
readonly PINOT: "PINOT";
|
|
8268
8417
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8269
8418
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8270
8419
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
@@ -8509,6 +8658,7 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
|
|
|
8509
8658
|
readonly MYSQL: "MYSQL";
|
|
8510
8659
|
readonly MARIADB: "MARIADB";
|
|
8511
8660
|
readonly ORACLE: "ORACLE";
|
|
8661
|
+
readonly PINOT: "PINOT";
|
|
8512
8662
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8513
8663
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8514
8664
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
@@ -8656,6 +8806,7 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
|
8656
8806
|
readonly MYSQL: "MYSQL";
|
|
8657
8807
|
readonly MARIADB: "MARIADB";
|
|
8658
8808
|
readonly ORACLE: "ORACLE";
|
|
8809
|
+
readonly PINOT: "PINOT";
|
|
8659
8810
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8660
8811
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8661
8812
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
@@ -8914,6 +9065,7 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
|
8914
9065
|
readonly MYSQL: "MYSQL";
|
|
8915
9066
|
readonly MARIADB: "MARIADB";
|
|
8916
9067
|
readonly ORACLE: "ORACLE";
|
|
9068
|
+
readonly PINOT: "PINOT";
|
|
8917
9069
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8918
9070
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8919
9071
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
@@ -9546,21 +9698,58 @@ export interface JsonApiExportDefinitionIn {
|
|
|
9546
9698
|
id: string;
|
|
9547
9699
|
/**
|
|
9548
9700
|
*
|
|
9549
|
-
* @type {
|
|
9701
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
9550
9702
|
* @memberof JsonApiExportDefinitionIn
|
|
9551
9703
|
*/
|
|
9552
|
-
attributes?:
|
|
9704
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
9553
9705
|
/**
|
|
9554
9706
|
*
|
|
9555
|
-
* @type {
|
|
9707
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
9556
9708
|
* @memberof JsonApiExportDefinitionIn
|
|
9557
9709
|
*/
|
|
9558
|
-
relationships?:
|
|
9710
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
9559
9711
|
}
|
|
9560
9712
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
9561
9713
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
9562
9714
|
};
|
|
9563
9715
|
export type JsonApiExportDefinitionInTypeEnum = typeof JsonApiExportDefinitionInTypeEnum[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
9716
|
+
/**
|
|
9717
|
+
*
|
|
9718
|
+
* @export
|
|
9719
|
+
* @interface JsonApiExportDefinitionInAttributes
|
|
9720
|
+
*/
|
|
9721
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
9722
|
+
/**
|
|
9723
|
+
*
|
|
9724
|
+
* @type {string}
|
|
9725
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
9726
|
+
*/
|
|
9727
|
+
title?: string;
|
|
9728
|
+
/**
|
|
9729
|
+
*
|
|
9730
|
+
* @type {string}
|
|
9731
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
9732
|
+
*/
|
|
9733
|
+
description?: string;
|
|
9734
|
+
/**
|
|
9735
|
+
*
|
|
9736
|
+
* @type {Array<string>}
|
|
9737
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
9738
|
+
*/
|
|
9739
|
+
tags?: Array<string>;
|
|
9740
|
+
/**
|
|
9741
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
9742
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
9743
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
9744
|
+
*/
|
|
9745
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
9746
|
+
/**
|
|
9747
|
+
*
|
|
9748
|
+
* @type {boolean}
|
|
9749
|
+
* @memberof JsonApiExportDefinitionInAttributes
|
|
9750
|
+
*/
|
|
9751
|
+
areRelationsValid?: boolean;
|
|
9752
|
+
}
|
|
9564
9753
|
/**
|
|
9565
9754
|
*
|
|
9566
9755
|
* @export
|
|
@@ -9575,9 +9764,28 @@ export interface JsonApiExportDefinitionInDocument {
|
|
|
9575
9764
|
data: JsonApiExportDefinitionIn;
|
|
9576
9765
|
}
|
|
9577
9766
|
/**
|
|
9578
|
-
*
|
|
9767
|
+
*
|
|
9579
9768
|
* @export
|
|
9580
|
-
* @interface
|
|
9769
|
+
* @interface JsonApiExportDefinitionInRelationships
|
|
9770
|
+
*/
|
|
9771
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
9772
|
+
/**
|
|
9773
|
+
*
|
|
9774
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
9775
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
9776
|
+
*/
|
|
9777
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9778
|
+
/**
|
|
9779
|
+
*
|
|
9780
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
9781
|
+
* @memberof JsonApiExportDefinitionInRelationships
|
|
9782
|
+
*/
|
|
9783
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
9784
|
+
}
|
|
9785
|
+
/**
|
|
9786
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
9787
|
+
* @export
|
|
9788
|
+
* @interface JsonApiExportDefinitionLinkage
|
|
9581
9789
|
*/
|
|
9582
9790
|
export interface JsonApiExportDefinitionLinkage {
|
|
9583
9791
|
/**
|
|
@@ -9762,10 +9970,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9762
9970
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9763
9971
|
/**
|
|
9764
9972
|
*
|
|
9765
|
-
* @type {
|
|
9973
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
9766
9974
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
9767
9975
|
*/
|
|
9768
|
-
analyticalDashboard?:
|
|
9976
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
9769
9977
|
/**
|
|
9770
9978
|
*
|
|
9771
9979
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -9785,19 +9993,6 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9785
9993
|
*/
|
|
9786
9994
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
9787
9995
|
}
|
|
9788
|
-
/**
|
|
9789
|
-
*
|
|
9790
|
-
* @export
|
|
9791
|
-
* @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9792
|
-
*/
|
|
9793
|
-
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
9794
|
-
/**
|
|
9795
|
-
*
|
|
9796
|
-
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
9797
|
-
* @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9798
|
-
*/
|
|
9799
|
-
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
9800
|
-
}
|
|
9801
9996
|
/**
|
|
9802
9997
|
*
|
|
9803
9998
|
* @export
|
|
@@ -9891,16 +10086,16 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
9891
10086
|
id: string;
|
|
9892
10087
|
/**
|
|
9893
10088
|
*
|
|
9894
|
-
* @type {
|
|
10089
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
9895
10090
|
* @memberof JsonApiExportDefinitionPatch
|
|
9896
10091
|
*/
|
|
9897
|
-
attributes?:
|
|
10092
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
9898
10093
|
/**
|
|
9899
10094
|
*
|
|
9900
|
-
* @type {
|
|
10095
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
9901
10096
|
* @memberof JsonApiExportDefinitionPatch
|
|
9902
10097
|
*/
|
|
9903
|
-
relationships?:
|
|
10098
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
9904
10099
|
}
|
|
9905
10100
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
9906
10101
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -9939,58 +10134,21 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
9939
10134
|
id?: string;
|
|
9940
10135
|
/**
|
|
9941
10136
|
*
|
|
9942
|
-
* @type {
|
|
10137
|
+
* @type {JsonApiExportDefinitionInAttributes}
|
|
9943
10138
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
9944
10139
|
*/
|
|
9945
|
-
attributes?:
|
|
10140
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
9946
10141
|
/**
|
|
9947
10142
|
*
|
|
9948
|
-
* @type {
|
|
10143
|
+
* @type {JsonApiExportDefinitionInRelationships}
|
|
9949
10144
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
9950
10145
|
*/
|
|
9951
|
-
relationships?:
|
|
10146
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
9952
10147
|
}
|
|
9953
10148
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
9954
10149
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
9955
10150
|
};
|
|
9956
10151
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = typeof JsonApiExportDefinitionPostOptionalIdTypeEnum[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
9957
|
-
/**
|
|
9958
|
-
*
|
|
9959
|
-
* @export
|
|
9960
|
-
* @interface JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9961
|
-
*/
|
|
9962
|
-
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
9963
|
-
/**
|
|
9964
|
-
*
|
|
9965
|
-
* @type {string}
|
|
9966
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9967
|
-
*/
|
|
9968
|
-
title?: string;
|
|
9969
|
-
/**
|
|
9970
|
-
*
|
|
9971
|
-
* @type {string}
|
|
9972
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9973
|
-
*/
|
|
9974
|
-
description?: string;
|
|
9975
|
-
/**
|
|
9976
|
-
*
|
|
9977
|
-
* @type {Array<string>}
|
|
9978
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9979
|
-
*/
|
|
9980
|
-
tags?: Array<string>;
|
|
9981
|
-
/**
|
|
9982
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
9983
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
9984
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9985
|
-
*/
|
|
9986
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
9987
|
-
/**
|
|
9988
|
-
*
|
|
9989
|
-
* @type {boolean}
|
|
9990
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9991
|
-
*/
|
|
9992
|
-
areRelationsValid?: boolean;
|
|
9993
|
-
}
|
|
9994
10152
|
/**
|
|
9995
10153
|
*
|
|
9996
10154
|
* @export
|
|
@@ -10004,25 +10162,6 @@ export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
|
10004
10162
|
*/
|
|
10005
10163
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
10006
10164
|
}
|
|
10007
|
-
/**
|
|
10008
|
-
*
|
|
10009
|
-
* @export
|
|
10010
|
-
* @interface JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10011
|
-
*/
|
|
10012
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
10013
|
-
/**
|
|
10014
|
-
*
|
|
10015
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10016
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10017
|
-
*/
|
|
10018
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10019
|
-
/**
|
|
10020
|
-
*
|
|
10021
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
10022
|
-
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10023
|
-
*/
|
|
10024
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
10025
|
-
}
|
|
10026
10165
|
/**
|
|
10027
10166
|
* JSON:API representation of exportTemplate entity.
|
|
10028
10167
|
* @export
|
|
@@ -10626,10 +10765,10 @@ export interface JsonApiFilterContextIn {
|
|
|
10626
10765
|
id: string;
|
|
10627
10766
|
/**
|
|
10628
10767
|
*
|
|
10629
|
-
* @type {
|
|
10768
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
10630
10769
|
* @memberof JsonApiFilterContextIn
|
|
10631
10770
|
*/
|
|
10632
|
-
attributes:
|
|
10771
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
10633
10772
|
}
|
|
10634
10773
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
10635
10774
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -10697,10 +10836,10 @@ export interface JsonApiFilterContextOut {
|
|
|
10697
10836
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
10698
10837
|
/**
|
|
10699
10838
|
*
|
|
10700
|
-
* @type {
|
|
10839
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
10701
10840
|
* @memberof JsonApiFilterContextOut
|
|
10702
10841
|
*/
|
|
10703
|
-
attributes:
|
|
10842
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
10704
10843
|
/**
|
|
10705
10844
|
*
|
|
10706
10845
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -10712,43 +10851,6 @@ export declare const JsonApiFilterContextOutTypeEnum: {
|
|
|
10712
10851
|
readonly FILTER_CONTEXT: "filterContext";
|
|
10713
10852
|
};
|
|
10714
10853
|
export type JsonApiFilterContextOutTypeEnum = typeof JsonApiFilterContextOutTypeEnum[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
10715
|
-
/**
|
|
10716
|
-
*
|
|
10717
|
-
* @export
|
|
10718
|
-
* @interface JsonApiFilterContextOutAttributes
|
|
10719
|
-
*/
|
|
10720
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
10721
|
-
/**
|
|
10722
|
-
*
|
|
10723
|
-
* @type {string}
|
|
10724
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
10725
|
-
*/
|
|
10726
|
-
title?: string;
|
|
10727
|
-
/**
|
|
10728
|
-
*
|
|
10729
|
-
* @type {string}
|
|
10730
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
10731
|
-
*/
|
|
10732
|
-
description?: string;
|
|
10733
|
-
/**
|
|
10734
|
-
*
|
|
10735
|
-
* @type {Array<string>}
|
|
10736
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
10737
|
-
*/
|
|
10738
|
-
tags?: Array<string>;
|
|
10739
|
-
/**
|
|
10740
|
-
*
|
|
10741
|
-
* @type {boolean}
|
|
10742
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
10743
|
-
*/
|
|
10744
|
-
areRelationsValid?: boolean;
|
|
10745
|
-
/**
|
|
10746
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
10747
|
-
* @type {object}
|
|
10748
|
-
* @memberof JsonApiFilterContextOutAttributes
|
|
10749
|
-
*/
|
|
10750
|
-
content: object;
|
|
10751
|
-
}
|
|
10752
10854
|
/**
|
|
10753
10855
|
*
|
|
10754
10856
|
* @export
|
|
@@ -10861,10 +10963,10 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
10861
10963
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
10862
10964
|
/**
|
|
10863
10965
|
*
|
|
10864
|
-
* @type {
|
|
10966
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
10865
10967
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
10866
10968
|
*/
|
|
10867
|
-
attributes:
|
|
10969
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
10868
10970
|
/**
|
|
10869
10971
|
*
|
|
10870
10972
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -10944,10 +11046,10 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
10944
11046
|
id?: string;
|
|
10945
11047
|
/**
|
|
10946
11048
|
*
|
|
10947
|
-
* @type {
|
|
11049
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
10948
11050
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
10949
11051
|
*/
|
|
10950
|
-
attributes:
|
|
11052
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
10951
11053
|
}
|
|
10952
11054
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
10953
11055
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -10986,21 +11088,64 @@ export interface JsonApiFilterViewIn {
|
|
|
10986
11088
|
id: string;
|
|
10987
11089
|
/**
|
|
10988
11090
|
*
|
|
10989
|
-
* @type {
|
|
11091
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
10990
11092
|
* @memberof JsonApiFilterViewIn
|
|
10991
11093
|
*/
|
|
10992
|
-
attributes:
|
|
11094
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
10993
11095
|
/**
|
|
10994
11096
|
*
|
|
10995
|
-
* @type {
|
|
11097
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
10996
11098
|
* @memberof JsonApiFilterViewIn
|
|
10997
11099
|
*/
|
|
10998
|
-
relationships?:
|
|
11100
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
10999
11101
|
}
|
|
11000
11102
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
11001
11103
|
readonly FILTER_VIEW: "filterView";
|
|
11002
11104
|
};
|
|
11003
11105
|
export type JsonApiFilterViewInTypeEnum = typeof JsonApiFilterViewInTypeEnum[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
11106
|
+
/**
|
|
11107
|
+
*
|
|
11108
|
+
* @export
|
|
11109
|
+
* @interface JsonApiFilterViewInAttributes
|
|
11110
|
+
*/
|
|
11111
|
+
export interface JsonApiFilterViewInAttributes {
|
|
11112
|
+
/**
|
|
11113
|
+
*
|
|
11114
|
+
* @type {string}
|
|
11115
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11116
|
+
*/
|
|
11117
|
+
title: string;
|
|
11118
|
+
/**
|
|
11119
|
+
*
|
|
11120
|
+
* @type {string}
|
|
11121
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11122
|
+
*/
|
|
11123
|
+
description?: string;
|
|
11124
|
+
/**
|
|
11125
|
+
*
|
|
11126
|
+
* @type {Array<string>}
|
|
11127
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11128
|
+
*/
|
|
11129
|
+
tags?: Array<string>;
|
|
11130
|
+
/**
|
|
11131
|
+
*
|
|
11132
|
+
* @type {boolean}
|
|
11133
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11134
|
+
*/
|
|
11135
|
+
areRelationsValid?: boolean;
|
|
11136
|
+
/**
|
|
11137
|
+
* Indicator whether the filter view should by applied by default.
|
|
11138
|
+
* @type {boolean}
|
|
11139
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11140
|
+
*/
|
|
11141
|
+
isDefault?: boolean;
|
|
11142
|
+
/**
|
|
11143
|
+
* The respective filter context.
|
|
11144
|
+
* @type {object}
|
|
11145
|
+
* @memberof JsonApiFilterViewInAttributes
|
|
11146
|
+
*/
|
|
11147
|
+
content: object;
|
|
11148
|
+
}
|
|
11004
11149
|
/**
|
|
11005
11150
|
*
|
|
11006
11151
|
* @export
|
|
@@ -11014,6 +11159,38 @@ export interface JsonApiFilterViewInDocument {
|
|
|
11014
11159
|
*/
|
|
11015
11160
|
data: JsonApiFilterViewIn;
|
|
11016
11161
|
}
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @export
|
|
11165
|
+
* @interface JsonApiFilterViewInRelationships
|
|
11166
|
+
*/
|
|
11167
|
+
export interface JsonApiFilterViewInRelationships {
|
|
11168
|
+
/**
|
|
11169
|
+
*
|
|
11170
|
+
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
11171
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11172
|
+
*/
|
|
11173
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
11174
|
+
/**
|
|
11175
|
+
*
|
|
11176
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
11177
|
+
* @memberof JsonApiFilterViewInRelationships
|
|
11178
|
+
*/
|
|
11179
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
11180
|
+
}
|
|
11181
|
+
/**
|
|
11182
|
+
*
|
|
11183
|
+
* @export
|
|
11184
|
+
* @interface JsonApiFilterViewInRelationshipsUser
|
|
11185
|
+
*/
|
|
11186
|
+
export interface JsonApiFilterViewInRelationshipsUser {
|
|
11187
|
+
/**
|
|
11188
|
+
*
|
|
11189
|
+
* @type {JsonApiUserToOneLinkage}
|
|
11190
|
+
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
11191
|
+
*/
|
|
11192
|
+
data: JsonApiUserToOneLinkage | null;
|
|
11193
|
+
}
|
|
11017
11194
|
/**
|
|
11018
11195
|
* JSON:API representation of filterView entity.
|
|
11019
11196
|
* @export
|
|
@@ -11034,64 +11211,21 @@ export interface JsonApiFilterViewOut {
|
|
|
11034
11211
|
id: string;
|
|
11035
11212
|
/**
|
|
11036
11213
|
*
|
|
11037
|
-
* @type {
|
|
11214
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11038
11215
|
* @memberof JsonApiFilterViewOut
|
|
11039
11216
|
*/
|
|
11040
|
-
attributes:
|
|
11217
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11041
11218
|
/**
|
|
11042
11219
|
*
|
|
11043
|
-
* @type {
|
|
11220
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11044
11221
|
* @memberof JsonApiFilterViewOut
|
|
11045
11222
|
*/
|
|
11046
|
-
relationships?:
|
|
11223
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11047
11224
|
}
|
|
11048
11225
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
11049
11226
|
readonly FILTER_VIEW: "filterView";
|
|
11050
11227
|
};
|
|
11051
11228
|
export type JsonApiFilterViewOutTypeEnum = typeof JsonApiFilterViewOutTypeEnum[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
11052
|
-
/**
|
|
11053
|
-
*
|
|
11054
|
-
* @export
|
|
11055
|
-
* @interface JsonApiFilterViewOutAttributes
|
|
11056
|
-
*/
|
|
11057
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
11058
|
-
/**
|
|
11059
|
-
*
|
|
11060
|
-
* @type {string}
|
|
11061
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11062
|
-
*/
|
|
11063
|
-
title: string;
|
|
11064
|
-
/**
|
|
11065
|
-
*
|
|
11066
|
-
* @type {string}
|
|
11067
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11068
|
-
*/
|
|
11069
|
-
description?: string;
|
|
11070
|
-
/**
|
|
11071
|
-
*
|
|
11072
|
-
* @type {Array<string>}
|
|
11073
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11074
|
-
*/
|
|
11075
|
-
tags?: Array<string>;
|
|
11076
|
-
/**
|
|
11077
|
-
*
|
|
11078
|
-
* @type {boolean}
|
|
11079
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11080
|
-
*/
|
|
11081
|
-
areRelationsValid?: boolean;
|
|
11082
|
-
/**
|
|
11083
|
-
* Indicator whether the filter view should by applied by default.
|
|
11084
|
-
* @type {boolean}
|
|
11085
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11086
|
-
*/
|
|
11087
|
-
isDefault?: boolean;
|
|
11088
|
-
/**
|
|
11089
|
-
* The respective filter context.
|
|
11090
|
-
* @type {object}
|
|
11091
|
-
* @memberof JsonApiFilterViewOutAttributes
|
|
11092
|
-
*/
|
|
11093
|
-
content: object;
|
|
11094
|
-
}
|
|
11095
11229
|
/**
|
|
11096
11230
|
*
|
|
11097
11231
|
* @export
|
|
@@ -11153,25 +11287,6 @@ export interface JsonApiFilterViewOutList {
|
|
|
11153
11287
|
*/
|
|
11154
11288
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11155
11289
|
}
|
|
11156
|
-
/**
|
|
11157
|
-
*
|
|
11158
|
-
* @export
|
|
11159
|
-
* @interface JsonApiFilterViewOutRelationships
|
|
11160
|
-
*/
|
|
11161
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
11162
|
-
/**
|
|
11163
|
-
*
|
|
11164
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
11165
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11166
|
-
*/
|
|
11167
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
11168
|
-
/**
|
|
11169
|
-
*
|
|
11170
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
11171
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11172
|
-
*/
|
|
11173
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
11174
|
-
}
|
|
11175
11290
|
/**
|
|
11176
11291
|
*
|
|
11177
11292
|
* @export
|
|
@@ -11192,16 +11307,16 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11192
11307
|
id: string;
|
|
11193
11308
|
/**
|
|
11194
11309
|
*
|
|
11195
|
-
* @type {
|
|
11310
|
+
* @type {JsonApiFilterViewInAttributes}
|
|
11196
11311
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11197
11312
|
*/
|
|
11198
|
-
attributes:
|
|
11313
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
11199
11314
|
/**
|
|
11200
11315
|
*
|
|
11201
|
-
* @type {
|
|
11316
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11202
11317
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11203
11318
|
*/
|
|
11204
|
-
relationships?:
|
|
11319
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11205
11320
|
/**
|
|
11206
11321
|
*
|
|
11207
11322
|
* @type {ObjectLinks}
|
|
@@ -11239,10 +11354,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11239
11354
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11240
11355
|
/**
|
|
11241
11356
|
*
|
|
11242
|
-
* @type {
|
|
11357
|
+
* @type {JsonApiFilterViewInRelationships}
|
|
11243
11358
|
* @memberof JsonApiFilterViewPatch
|
|
11244
11359
|
*/
|
|
11245
|
-
relationships?:
|
|
11360
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
11246
11361
|
}
|
|
11247
11362
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11248
11363
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -12462,15 +12577,52 @@ export interface JsonApiMetricIn {
|
|
|
12462
12577
|
id: string;
|
|
12463
12578
|
/**
|
|
12464
12579
|
*
|
|
12465
|
-
* @type {
|
|
12580
|
+
* @type {JsonApiMetricInAttributes}
|
|
12466
12581
|
* @memberof JsonApiMetricIn
|
|
12467
12582
|
*/
|
|
12468
|
-
attributes:
|
|
12583
|
+
attributes: JsonApiMetricInAttributes;
|
|
12469
12584
|
}
|
|
12470
12585
|
export declare const JsonApiMetricInTypeEnum: {
|
|
12471
12586
|
readonly METRIC: "metric";
|
|
12472
12587
|
};
|
|
12473
12588
|
export type JsonApiMetricInTypeEnum = typeof JsonApiMetricInTypeEnum[keyof typeof JsonApiMetricInTypeEnum];
|
|
12589
|
+
/**
|
|
12590
|
+
*
|
|
12591
|
+
* @export
|
|
12592
|
+
* @interface JsonApiMetricInAttributes
|
|
12593
|
+
*/
|
|
12594
|
+
export interface JsonApiMetricInAttributes {
|
|
12595
|
+
/**
|
|
12596
|
+
*
|
|
12597
|
+
* @type {string}
|
|
12598
|
+
* @memberof JsonApiMetricInAttributes
|
|
12599
|
+
*/
|
|
12600
|
+
title?: string;
|
|
12601
|
+
/**
|
|
12602
|
+
*
|
|
12603
|
+
* @type {string}
|
|
12604
|
+
* @memberof JsonApiMetricInAttributes
|
|
12605
|
+
*/
|
|
12606
|
+
description?: string;
|
|
12607
|
+
/**
|
|
12608
|
+
*
|
|
12609
|
+
* @type {Array<string>}
|
|
12610
|
+
* @memberof JsonApiMetricInAttributes
|
|
12611
|
+
*/
|
|
12612
|
+
tags?: Array<string>;
|
|
12613
|
+
/**
|
|
12614
|
+
*
|
|
12615
|
+
* @type {boolean}
|
|
12616
|
+
* @memberof JsonApiMetricInAttributes
|
|
12617
|
+
*/
|
|
12618
|
+
areRelationsValid?: boolean;
|
|
12619
|
+
/**
|
|
12620
|
+
*
|
|
12621
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
12622
|
+
* @memberof JsonApiMetricInAttributes
|
|
12623
|
+
*/
|
|
12624
|
+
content: JsonApiMetricOutAttributesContent;
|
|
12625
|
+
}
|
|
12474
12626
|
/**
|
|
12475
12627
|
*
|
|
12476
12628
|
* @export
|
|
@@ -12823,52 +12975,15 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
12823
12975
|
id?: string;
|
|
12824
12976
|
/**
|
|
12825
12977
|
*
|
|
12826
|
-
* @type {
|
|
12978
|
+
* @type {JsonApiMetricInAttributes}
|
|
12827
12979
|
* @memberof JsonApiMetricPostOptionalId
|
|
12828
12980
|
*/
|
|
12829
|
-
attributes:
|
|
12981
|
+
attributes: JsonApiMetricInAttributes;
|
|
12830
12982
|
}
|
|
12831
12983
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
12832
12984
|
readonly METRIC: "metric";
|
|
12833
12985
|
};
|
|
12834
12986
|
export type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
12835
|
-
/**
|
|
12836
|
-
*
|
|
12837
|
-
* @export
|
|
12838
|
-
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
12839
|
-
*/
|
|
12840
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
12841
|
-
/**
|
|
12842
|
-
*
|
|
12843
|
-
* @type {string}
|
|
12844
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12845
|
-
*/
|
|
12846
|
-
title?: string;
|
|
12847
|
-
/**
|
|
12848
|
-
*
|
|
12849
|
-
* @type {string}
|
|
12850
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12851
|
-
*/
|
|
12852
|
-
description?: string;
|
|
12853
|
-
/**
|
|
12854
|
-
*
|
|
12855
|
-
* @type {Array<string>}
|
|
12856
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12857
|
-
*/
|
|
12858
|
-
tags?: Array<string>;
|
|
12859
|
-
/**
|
|
12860
|
-
*
|
|
12861
|
-
* @type {boolean}
|
|
12862
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12863
|
-
*/
|
|
12864
|
-
areRelationsValid?: boolean;
|
|
12865
|
-
/**
|
|
12866
|
-
*
|
|
12867
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
12868
|
-
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12869
|
-
*/
|
|
12870
|
-
content: JsonApiMetricOutAttributesContent;
|
|
12871
|
-
}
|
|
12872
12987
|
/**
|
|
12873
12988
|
*
|
|
12874
12989
|
* @export
|
|
@@ -12902,15 +13017,81 @@ export interface JsonApiNotificationChannelIn {
|
|
|
12902
13017
|
id: string;
|
|
12903
13018
|
/**
|
|
12904
13019
|
*
|
|
12905
|
-
* @type {
|
|
13020
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
12906
13021
|
* @memberof JsonApiNotificationChannelIn
|
|
12907
13022
|
*/
|
|
12908
|
-
attributes?:
|
|
13023
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
12909
13024
|
}
|
|
12910
13025
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
12911
13026
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
12912
13027
|
};
|
|
12913
13028
|
export type JsonApiNotificationChannelInTypeEnum = typeof JsonApiNotificationChannelInTypeEnum[keyof typeof JsonApiNotificationChannelInTypeEnum];
|
|
13029
|
+
/**
|
|
13030
|
+
*
|
|
13031
|
+
* @export
|
|
13032
|
+
* @interface JsonApiNotificationChannelInAttributes
|
|
13033
|
+
*/
|
|
13034
|
+
export interface JsonApiNotificationChannelInAttributes {
|
|
13035
|
+
/**
|
|
13036
|
+
*
|
|
13037
|
+
* @type {string}
|
|
13038
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13039
|
+
*/
|
|
13040
|
+
name?: string | null;
|
|
13041
|
+
/**
|
|
13042
|
+
*
|
|
13043
|
+
* @type {string}
|
|
13044
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13045
|
+
*/
|
|
13046
|
+
description?: string | null;
|
|
13047
|
+
/**
|
|
13048
|
+
* The destination where the notifications are to be sent.
|
|
13049
|
+
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
13050
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13051
|
+
*/
|
|
13052
|
+
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
13053
|
+
/**
|
|
13054
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}, {dashboardId}.
|
|
13055
|
+
* @type {string}
|
|
13056
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13057
|
+
*/
|
|
13058
|
+
customDashboardUrl?: string;
|
|
13059
|
+
/**
|
|
13060
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
13061
|
+
* @type {string}
|
|
13062
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13063
|
+
*/
|
|
13064
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
13065
|
+
/**
|
|
13066
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
13067
|
+
* @type {string}
|
|
13068
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13069
|
+
*/
|
|
13070
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
13071
|
+
/**
|
|
13072
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
13073
|
+
* @type {string}
|
|
13074
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
13075
|
+
*/
|
|
13076
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
13077
|
+
}
|
|
13078
|
+
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
13079
|
+
readonly HIDDEN: "HIDDEN";
|
|
13080
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
13081
|
+
readonly ALL: "ALL";
|
|
13082
|
+
};
|
|
13083
|
+
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
13084
|
+
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
13085
|
+
readonly CREATOR: "CREATOR";
|
|
13086
|
+
readonly INTERNAL: "INTERNAL";
|
|
13087
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
13088
|
+
};
|
|
13089
|
+
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
13090
|
+
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
13091
|
+
readonly DISABLED: "DISABLED";
|
|
13092
|
+
readonly ENABLED: "ENABLED";
|
|
13093
|
+
};
|
|
13094
|
+
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
12914
13095
|
/**
|
|
12915
13096
|
*
|
|
12916
13097
|
* @export
|
|
@@ -13154,10 +13335,10 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
13154
13335
|
id: string;
|
|
13155
13336
|
/**
|
|
13156
13337
|
*
|
|
13157
|
-
* @type {
|
|
13338
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
13158
13339
|
* @memberof JsonApiNotificationChannelPatch
|
|
13159
13340
|
*/
|
|
13160
|
-
attributes?:
|
|
13341
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
13161
13342
|
}
|
|
13162
13343
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
13163
13344
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13196,81 +13377,15 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
13196
13377
|
id?: string;
|
|
13197
13378
|
/**
|
|
13198
13379
|
*
|
|
13199
|
-
* @type {
|
|
13380
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
13200
13381
|
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13201
13382
|
*/
|
|
13202
|
-
attributes?:
|
|
13383
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
13203
13384
|
}
|
|
13204
13385
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
13205
13386
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
13206
13387
|
};
|
|
13207
13388
|
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = typeof JsonApiNotificationChannelPostOptionalIdTypeEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
13208
|
-
/**
|
|
13209
|
-
*
|
|
13210
|
-
* @export
|
|
13211
|
-
* @interface JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13212
|
-
*/
|
|
13213
|
-
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
13214
|
-
/**
|
|
13215
|
-
*
|
|
13216
|
-
* @type {string}
|
|
13217
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13218
|
-
*/
|
|
13219
|
-
name?: string | null;
|
|
13220
|
-
/**
|
|
13221
|
-
*
|
|
13222
|
-
* @type {string}
|
|
13223
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13224
|
-
*/
|
|
13225
|
-
description?: string | null;
|
|
13226
|
-
/**
|
|
13227
|
-
* The destination where the notifications are to be sent.
|
|
13228
|
-
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
13229
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13230
|
-
*/
|
|
13231
|
-
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
13232
|
-
/**
|
|
13233
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}, {dashboardId}.
|
|
13234
|
-
* @type {string}
|
|
13235
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13236
|
-
*/
|
|
13237
|
-
customDashboardUrl?: string;
|
|
13238
|
-
/**
|
|
13239
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
13240
|
-
* @type {string}
|
|
13241
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13242
|
-
*/
|
|
13243
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
13244
|
-
/**
|
|
13245
|
-
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
13246
|
-
* @type {string}
|
|
13247
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13248
|
-
*/
|
|
13249
|
-
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
13250
|
-
/**
|
|
13251
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
13252
|
-
* @type {string}
|
|
13253
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13254
|
-
*/
|
|
13255
|
-
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
13256
|
-
}
|
|
13257
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
13258
|
-
readonly HIDDEN: "HIDDEN";
|
|
13259
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
13260
|
-
readonly ALL: "ALL";
|
|
13261
|
-
};
|
|
13262
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
13263
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
13264
|
-
readonly CREATOR: "CREATOR";
|
|
13265
|
-
readonly INTERNAL: "INTERNAL";
|
|
13266
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
13267
|
-
};
|
|
13268
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
13269
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
13270
|
-
readonly DISABLED: "DISABLED";
|
|
13271
|
-
readonly ENABLED: "ENABLED";
|
|
13272
|
-
};
|
|
13273
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
13274
13389
|
/**
|
|
13275
13390
|
*
|
|
13276
13391
|
* @export
|
|
@@ -13535,42 +13650,16 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
13535
13650
|
export interface JsonApiOrganizationOutRelationships {
|
|
13536
13651
|
/**
|
|
13537
13652
|
*
|
|
13538
|
-
* @type {
|
|
13653
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
13539
13654
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13540
13655
|
*/
|
|
13541
|
-
bootstrapUser?:
|
|
13656
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
13542
13657
|
/**
|
|
13543
13658
|
*
|
|
13544
|
-
* @type {
|
|
13659
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
13545
13660
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13546
13661
|
*/
|
|
13547
|
-
bootstrapUserGroup?:
|
|
13548
|
-
}
|
|
13549
|
-
/**
|
|
13550
|
-
*
|
|
13551
|
-
* @export
|
|
13552
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
13553
|
-
*/
|
|
13554
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
13555
|
-
/**
|
|
13556
|
-
*
|
|
13557
|
-
* @type {JsonApiUserToOneLinkage}
|
|
13558
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
13559
|
-
*/
|
|
13560
|
-
data: JsonApiUserToOneLinkage | null;
|
|
13561
|
-
}
|
|
13562
|
-
/**
|
|
13563
|
-
*
|
|
13564
|
-
* @export
|
|
13565
|
-
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
13566
|
-
*/
|
|
13567
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
13568
|
-
/**
|
|
13569
|
-
*
|
|
13570
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
13571
|
-
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
13572
|
-
*/
|
|
13573
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
13662
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
13574
13663
|
}
|
|
13575
13664
|
/**
|
|
13576
13665
|
* JSON:API representation of patching organization entity.
|
|
@@ -13716,10 +13805,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
13716
13805
|
id: string;
|
|
13717
13806
|
/**
|
|
13718
13807
|
*
|
|
13719
|
-
* @type {
|
|
13808
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
13720
13809
|
* @memberof JsonApiOrganizationSettingIn
|
|
13721
13810
|
*/
|
|
13722
|
-
attributes?:
|
|
13811
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
13723
13812
|
}
|
|
13724
13813
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
13725
13814
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -13758,15 +13847,62 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
13758
13847
|
id: string;
|
|
13759
13848
|
/**
|
|
13760
13849
|
*
|
|
13761
|
-
* @type {
|
|
13850
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
13762
13851
|
* @memberof JsonApiOrganizationSettingOut
|
|
13763
13852
|
*/
|
|
13764
|
-
attributes?:
|
|
13853
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
13765
13854
|
}
|
|
13766
13855
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
13767
13856
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
13768
13857
|
};
|
|
13769
13858
|
export type JsonApiOrganizationSettingOutTypeEnum = typeof JsonApiOrganizationSettingOutTypeEnum[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
|
|
13859
|
+
/**
|
|
13860
|
+
*
|
|
13861
|
+
* @export
|
|
13862
|
+
* @interface JsonApiOrganizationSettingOutAttributes
|
|
13863
|
+
*/
|
|
13864
|
+
export interface JsonApiOrganizationSettingOutAttributes {
|
|
13865
|
+
/**
|
|
13866
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
13867
|
+
* @type {object}
|
|
13868
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
13869
|
+
*/
|
|
13870
|
+
content?: object;
|
|
13871
|
+
/**
|
|
13872
|
+
*
|
|
13873
|
+
* @type {string}
|
|
13874
|
+
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
13875
|
+
*/
|
|
13876
|
+
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
13877
|
+
}
|
|
13878
|
+
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
13879
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
13880
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
13881
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
13882
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
13883
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
13884
|
+
readonly LOCALE: "LOCALE";
|
|
13885
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
13886
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
13887
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
13888
|
+
readonly WEEK_START: "WEEK_START";
|
|
13889
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
13890
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
13891
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
13892
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
13893
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
13894
|
+
readonly ALERT: "ALERT";
|
|
13895
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
13896
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
13897
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
13898
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
13899
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
13900
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
13901
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
13902
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
13903
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
13904
|
+
};
|
|
13905
|
+
export type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
13770
13906
|
/**
|
|
13771
13907
|
*
|
|
13772
13908
|
* @export
|
|
@@ -13831,10 +13967,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
13831
13967
|
id: string;
|
|
13832
13968
|
/**
|
|
13833
13969
|
*
|
|
13834
|
-
* @type {
|
|
13970
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
13835
13971
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
13836
13972
|
*/
|
|
13837
|
-
attributes?:
|
|
13973
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
13838
13974
|
/**
|
|
13839
13975
|
*
|
|
13840
13976
|
* @type {ObjectLinks}
|
|
@@ -13866,10 +14002,10 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
13866
14002
|
id: string;
|
|
13867
14003
|
/**
|
|
13868
14004
|
*
|
|
13869
|
-
* @type {
|
|
14005
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
13870
14006
|
* @memberof JsonApiOrganizationSettingPatch
|
|
13871
14007
|
*/
|
|
13872
|
-
attributes?:
|
|
14008
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
13873
14009
|
}
|
|
13874
14010
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
13875
14011
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -14097,36 +14233,105 @@ export interface JsonApiUserDataFilterIn {
|
|
|
14097
14233
|
* @type {string}
|
|
14098
14234
|
* @memberof JsonApiUserDataFilterIn
|
|
14099
14235
|
*/
|
|
14100
|
-
id: string;
|
|
14236
|
+
id: string;
|
|
14237
|
+
/**
|
|
14238
|
+
*
|
|
14239
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14240
|
+
* @memberof JsonApiUserDataFilterIn
|
|
14241
|
+
*/
|
|
14242
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14243
|
+
/**
|
|
14244
|
+
*
|
|
14245
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
14246
|
+
* @memberof JsonApiUserDataFilterIn
|
|
14247
|
+
*/
|
|
14248
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
14249
|
+
}
|
|
14250
|
+
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
14251
|
+
readonly USER_DATA_FILTER: "userDataFilter";
|
|
14252
|
+
};
|
|
14253
|
+
export type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
14254
|
+
/**
|
|
14255
|
+
*
|
|
14256
|
+
* @export
|
|
14257
|
+
* @interface JsonApiUserDataFilterInAttributes
|
|
14258
|
+
*/
|
|
14259
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
14260
|
+
/**
|
|
14261
|
+
*
|
|
14262
|
+
* @type {string}
|
|
14263
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
14264
|
+
*/
|
|
14265
|
+
title?: string;
|
|
14266
|
+
/**
|
|
14267
|
+
*
|
|
14268
|
+
* @type {string}
|
|
14269
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
14270
|
+
*/
|
|
14271
|
+
description?: string;
|
|
14272
|
+
/**
|
|
14273
|
+
*
|
|
14274
|
+
* @type {Array<string>}
|
|
14275
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
14276
|
+
*/
|
|
14277
|
+
tags?: Array<string>;
|
|
14278
|
+
/**
|
|
14279
|
+
*
|
|
14280
|
+
* @type {boolean}
|
|
14281
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
14282
|
+
*/
|
|
14283
|
+
areRelationsValid?: boolean;
|
|
14284
|
+
/**
|
|
14285
|
+
*
|
|
14286
|
+
* @type {string}
|
|
14287
|
+
* @memberof JsonApiUserDataFilterInAttributes
|
|
14288
|
+
*/
|
|
14289
|
+
maql: string;
|
|
14290
|
+
}
|
|
14291
|
+
/**
|
|
14292
|
+
*
|
|
14293
|
+
* @export
|
|
14294
|
+
* @interface JsonApiUserDataFilterInDocument
|
|
14295
|
+
*/
|
|
14296
|
+
export interface JsonApiUserDataFilterInDocument {
|
|
14297
|
+
/**
|
|
14298
|
+
*
|
|
14299
|
+
* @type {JsonApiUserDataFilterIn}
|
|
14300
|
+
* @memberof JsonApiUserDataFilterInDocument
|
|
14301
|
+
*/
|
|
14302
|
+
data: JsonApiUserDataFilterIn;
|
|
14303
|
+
}
|
|
14304
|
+
/**
|
|
14305
|
+
*
|
|
14306
|
+
* @export
|
|
14307
|
+
* @interface JsonApiUserDataFilterInRelationships
|
|
14308
|
+
*/
|
|
14309
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
14101
14310
|
/**
|
|
14102
14311
|
*
|
|
14103
|
-
* @type {
|
|
14104
|
-
* @memberof
|
|
14312
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
14313
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
14105
14314
|
*/
|
|
14106
|
-
|
|
14315
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
14107
14316
|
/**
|
|
14108
14317
|
*
|
|
14109
|
-
* @type {
|
|
14110
|
-
* @memberof
|
|
14318
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14319
|
+
* @memberof JsonApiUserDataFilterInRelationships
|
|
14111
14320
|
*/
|
|
14112
|
-
|
|
14321
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14113
14322
|
}
|
|
14114
|
-
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
14115
|
-
readonly USER_DATA_FILTER: "userDataFilter";
|
|
14116
|
-
};
|
|
14117
|
-
export type JsonApiUserDataFilterInTypeEnum = typeof JsonApiUserDataFilterInTypeEnum[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
14118
14323
|
/**
|
|
14119
14324
|
*
|
|
14120
14325
|
* @export
|
|
14121
|
-
* @interface
|
|
14326
|
+
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
14122
14327
|
*/
|
|
14123
|
-
export interface
|
|
14328
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
14124
14329
|
/**
|
|
14125
14330
|
*
|
|
14126
|
-
* @type {
|
|
14127
|
-
* @memberof
|
|
14331
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
14332
|
+
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
14128
14333
|
*/
|
|
14129
|
-
data:
|
|
14334
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
14130
14335
|
}
|
|
14131
14336
|
/**
|
|
14132
14337
|
* JSON:API representation of userDataFilter entity.
|
|
@@ -14154,10 +14359,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
14154
14359
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
14155
14360
|
/**
|
|
14156
14361
|
*
|
|
14157
|
-
* @type {
|
|
14362
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14158
14363
|
* @memberof JsonApiUserDataFilterOut
|
|
14159
14364
|
*/
|
|
14160
|
-
attributes:
|
|
14365
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14161
14366
|
/**
|
|
14162
14367
|
*
|
|
14163
14368
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -14169,43 +14374,6 @@ export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
|
14169
14374
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
14170
14375
|
};
|
|
14171
14376
|
export type JsonApiUserDataFilterOutTypeEnum = typeof JsonApiUserDataFilterOutTypeEnum[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
14172
|
-
/**
|
|
14173
|
-
*
|
|
14174
|
-
* @export
|
|
14175
|
-
* @interface JsonApiUserDataFilterOutAttributes
|
|
14176
|
-
*/
|
|
14177
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
14178
|
-
/**
|
|
14179
|
-
*
|
|
14180
|
-
* @type {string}
|
|
14181
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14182
|
-
*/
|
|
14183
|
-
title?: string;
|
|
14184
|
-
/**
|
|
14185
|
-
*
|
|
14186
|
-
* @type {string}
|
|
14187
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14188
|
-
*/
|
|
14189
|
-
description?: string;
|
|
14190
|
-
/**
|
|
14191
|
-
*
|
|
14192
|
-
* @type {Array<string>}
|
|
14193
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14194
|
-
*/
|
|
14195
|
-
tags?: Array<string>;
|
|
14196
|
-
/**
|
|
14197
|
-
*
|
|
14198
|
-
* @type {boolean}
|
|
14199
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14200
|
-
*/
|
|
14201
|
-
areRelationsValid?: boolean;
|
|
14202
|
-
/**
|
|
14203
|
-
*
|
|
14204
|
-
* @type {string}
|
|
14205
|
-
* @memberof JsonApiUserDataFilterOutAttributes
|
|
14206
|
-
*/
|
|
14207
|
-
maql: string;
|
|
14208
|
-
}
|
|
14209
14377
|
/**
|
|
14210
14378
|
*
|
|
14211
14379
|
* @export
|
|
@@ -14275,16 +14443,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14275
14443
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
14276
14444
|
/**
|
|
14277
14445
|
*
|
|
14278
|
-
* @type {
|
|
14446
|
+
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
14279
14447
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14280
14448
|
*/
|
|
14281
|
-
user?:
|
|
14449
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
14282
14450
|
/**
|
|
14283
14451
|
*
|
|
14284
|
-
* @type {
|
|
14452
|
+
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
14285
14453
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14286
14454
|
*/
|
|
14287
|
-
userGroup?:
|
|
14455
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
14288
14456
|
/**
|
|
14289
14457
|
*
|
|
14290
14458
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -14342,10 +14510,10 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
14342
14510
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
14343
14511
|
/**
|
|
14344
14512
|
*
|
|
14345
|
-
* @type {
|
|
14513
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14346
14514
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
14347
14515
|
*/
|
|
14348
|
-
attributes:
|
|
14516
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14349
14517
|
/**
|
|
14350
14518
|
*
|
|
14351
14519
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -14389,10 +14557,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
14389
14557
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
14390
14558
|
/**
|
|
14391
14559
|
*
|
|
14392
|
-
* @type {
|
|
14560
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
14393
14561
|
* @memberof JsonApiUserDataFilterPatch
|
|
14394
14562
|
*/
|
|
14395
|
-
relationships?:
|
|
14563
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
14396
14564
|
}
|
|
14397
14565
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
14398
14566
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -14468,16 +14636,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
14468
14636
|
id?: string;
|
|
14469
14637
|
/**
|
|
14470
14638
|
*
|
|
14471
|
-
* @type {
|
|
14639
|
+
* @type {JsonApiUserDataFilterInAttributes}
|
|
14472
14640
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
14473
14641
|
*/
|
|
14474
|
-
attributes:
|
|
14642
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
14475
14643
|
/**
|
|
14476
14644
|
*
|
|
14477
|
-
* @type {
|
|
14645
|
+
* @type {JsonApiUserDataFilterInRelationships}
|
|
14478
14646
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
14479
14647
|
*/
|
|
14480
|
-
relationships?:
|
|
14648
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
14481
14649
|
}
|
|
14482
14650
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
14483
14651
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -14496,25 +14664,6 @@ export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
14496
14664
|
*/
|
|
14497
14665
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
14498
14666
|
}
|
|
14499
|
-
/**
|
|
14500
|
-
*
|
|
14501
|
-
* @export
|
|
14502
|
-
* @interface JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14503
|
-
*/
|
|
14504
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
14505
|
-
/**
|
|
14506
|
-
*
|
|
14507
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
14508
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14509
|
-
*/
|
|
14510
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
14511
|
-
/**
|
|
14512
|
-
*
|
|
14513
|
-
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
14514
|
-
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14515
|
-
*/
|
|
14516
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14517
|
-
}
|
|
14518
14667
|
/**
|
|
14519
14668
|
* JSON:API representation of userGroup entity.
|
|
14520
14669
|
* @export
|
|
@@ -14698,10 +14847,23 @@ export interface JsonApiUserGroupOutList {
|
|
|
14698
14847
|
export interface JsonApiUserGroupOutRelationships {
|
|
14699
14848
|
/**
|
|
14700
14849
|
*
|
|
14701
|
-
* @type {
|
|
14850
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
14702
14851
|
* @memberof JsonApiUserGroupOutRelationships
|
|
14703
14852
|
*/
|
|
14704
|
-
parents?:
|
|
14853
|
+
parents?: JsonApiUserGroupOutRelationshipsParents;
|
|
14854
|
+
}
|
|
14855
|
+
/**
|
|
14856
|
+
*
|
|
14857
|
+
* @export
|
|
14858
|
+
* @interface JsonApiUserGroupOutRelationshipsParents
|
|
14859
|
+
*/
|
|
14860
|
+
export interface JsonApiUserGroupOutRelationshipsParents {
|
|
14861
|
+
/**
|
|
14862
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
14863
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
14864
|
+
* @memberof JsonApiUserGroupOutRelationshipsParents
|
|
14865
|
+
*/
|
|
14866
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
14705
14867
|
}
|
|
14706
14868
|
/**
|
|
14707
14869
|
*
|
|
@@ -15161,23 +15323,10 @@ export interface JsonApiUserOutList {
|
|
|
15161
15323
|
export interface JsonApiUserOutRelationships {
|
|
15162
15324
|
/**
|
|
15163
15325
|
*
|
|
15164
|
-
* @type {
|
|
15326
|
+
* @type {JsonApiUserGroupOutRelationshipsParents}
|
|
15165
15327
|
* @memberof JsonApiUserOutRelationships
|
|
15166
15328
|
*/
|
|
15167
|
-
userGroups?:
|
|
15168
|
-
}
|
|
15169
|
-
/**
|
|
15170
|
-
*
|
|
15171
|
-
* @export
|
|
15172
|
-
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
15173
|
-
*/
|
|
15174
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
15175
|
-
/**
|
|
15176
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
15177
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
15178
|
-
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
15179
|
-
*/
|
|
15180
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
15329
|
+
userGroups?: JsonApiUserGroupOutRelationshipsParents;
|
|
15181
15330
|
}
|
|
15182
15331
|
/**
|
|
15183
15332
|
*
|
|
@@ -15288,10 +15437,10 @@ export interface JsonApiUserSettingIn {
|
|
|
15288
15437
|
id: string;
|
|
15289
15438
|
/**
|
|
15290
15439
|
*
|
|
15291
|
-
* @type {
|
|
15440
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
15292
15441
|
* @memberof JsonApiUserSettingIn
|
|
15293
15442
|
*/
|
|
15294
|
-
attributes?:
|
|
15443
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
15295
15444
|
}
|
|
15296
15445
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
15297
15446
|
readonly USER_SETTING: "userSetting";
|
|
@@ -15330,59 +15479,15 @@ export interface JsonApiUserSettingOut {
|
|
|
15330
15479
|
id: string;
|
|
15331
15480
|
/**
|
|
15332
15481
|
*
|
|
15333
|
-
* @type {
|
|
15482
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
15334
15483
|
* @memberof JsonApiUserSettingOut
|
|
15335
15484
|
*/
|
|
15336
|
-
attributes?:
|
|
15485
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
15337
15486
|
}
|
|
15338
15487
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
15339
15488
|
readonly USER_SETTING: "userSetting";
|
|
15340
15489
|
};
|
|
15341
15490
|
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15342
|
-
/**
|
|
15343
|
-
*
|
|
15344
|
-
* @export
|
|
15345
|
-
* @interface JsonApiUserSettingOutAttributes
|
|
15346
|
-
*/
|
|
15347
|
-
export interface JsonApiUserSettingOutAttributes {
|
|
15348
|
-
/**
|
|
15349
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
15350
|
-
* @type {object}
|
|
15351
|
-
* @memberof JsonApiUserSettingOutAttributes
|
|
15352
|
-
*/
|
|
15353
|
-
content?: object;
|
|
15354
|
-
/**
|
|
15355
|
-
*
|
|
15356
|
-
* @type {string}
|
|
15357
|
-
* @memberof JsonApiUserSettingOutAttributes
|
|
15358
|
-
*/
|
|
15359
|
-
type?: JsonApiUserSettingOutAttributesTypeEnum;
|
|
15360
|
-
}
|
|
15361
|
-
export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
15362
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
15363
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15364
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
15365
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
15366
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
15367
|
-
readonly LOCALE: "LOCALE";
|
|
15368
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
15369
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
15370
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
15371
|
-
readonly WEEK_START: "WEEK_START";
|
|
15372
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
15373
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
15374
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
15375
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
15376
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
15377
|
-
readonly ALERT: "ALERT";
|
|
15378
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
15379
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
15380
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
15381
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
15382
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
15383
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
15384
|
-
};
|
|
15385
|
-
export type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
15386
15491
|
/**
|
|
15387
15492
|
*
|
|
15388
15493
|
* @export
|
|
@@ -15447,10 +15552,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
15447
15552
|
id: string;
|
|
15448
15553
|
/**
|
|
15449
15554
|
*
|
|
15450
|
-
* @type {
|
|
15555
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
15451
15556
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
15452
15557
|
*/
|
|
15453
|
-
attributes?:
|
|
15558
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
15454
15559
|
/**
|
|
15455
15560
|
*
|
|
15456
15561
|
* @type {ObjectLinks}
|
|
@@ -15488,10 +15593,10 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
15488
15593
|
id: string;
|
|
15489
15594
|
/**
|
|
15490
15595
|
*
|
|
15491
|
-
* @type {
|
|
15596
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
15492
15597
|
* @memberof JsonApiVisualizationObjectIn
|
|
15493
15598
|
*/
|
|
15494
|
-
attributes:
|
|
15599
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
15495
15600
|
}
|
|
15496
15601
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
15497
15602
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -15952,10 +16057,10 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
15952
16057
|
id?: string;
|
|
15953
16058
|
/**
|
|
15954
16059
|
*
|
|
15955
|
-
* @type {
|
|
16060
|
+
* @type {JsonApiAnalyticalDashboardInAttributes}
|
|
15956
16061
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
15957
16062
|
*/
|
|
15958
|
-
attributes:
|
|
16063
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
15959
16064
|
}
|
|
15960
16065
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
15961
16066
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
@@ -16314,21 +16419,46 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
16314
16419
|
id: string;
|
|
16315
16420
|
/**
|
|
16316
16421
|
*
|
|
16317
|
-
* @type {
|
|
16422
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16318
16423
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16319
16424
|
*/
|
|
16320
|
-
attributes?:
|
|
16425
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16321
16426
|
/**
|
|
16322
16427
|
*
|
|
16323
|
-
* @type {
|
|
16428
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16324
16429
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16325
16430
|
*/
|
|
16326
|
-
relationships?:
|
|
16431
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16327
16432
|
}
|
|
16328
16433
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
16329
16434
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16330
16435
|
};
|
|
16331
16436
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = typeof JsonApiWorkspaceDataFilterSettingInTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
16437
|
+
/**
|
|
16438
|
+
*
|
|
16439
|
+
* @export
|
|
16440
|
+
* @interface JsonApiWorkspaceDataFilterSettingInAttributes
|
|
16441
|
+
*/
|
|
16442
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
16443
|
+
/**
|
|
16444
|
+
*
|
|
16445
|
+
* @type {string}
|
|
16446
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
16447
|
+
*/
|
|
16448
|
+
title?: string;
|
|
16449
|
+
/**
|
|
16450
|
+
*
|
|
16451
|
+
* @type {string}
|
|
16452
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
16453
|
+
*/
|
|
16454
|
+
description?: string;
|
|
16455
|
+
/**
|
|
16456
|
+
*
|
|
16457
|
+
* @type {Array<string>}
|
|
16458
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInAttributes
|
|
16459
|
+
*/
|
|
16460
|
+
filterValues?: Array<string>;
|
|
16461
|
+
}
|
|
16332
16462
|
/**
|
|
16333
16463
|
*
|
|
16334
16464
|
* @export
|
|
@@ -16342,6 +16472,32 @@ export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
|
16342
16472
|
*/
|
|
16343
16473
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
16344
16474
|
}
|
|
16475
|
+
/**
|
|
16476
|
+
*
|
|
16477
|
+
* @export
|
|
16478
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationships
|
|
16479
|
+
*/
|
|
16480
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
16481
|
+
/**
|
|
16482
|
+
*
|
|
16483
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter}
|
|
16484
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationships
|
|
16485
|
+
*/
|
|
16486
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
16487
|
+
}
|
|
16488
|
+
/**
|
|
16489
|
+
*
|
|
16490
|
+
* @export
|
|
16491
|
+
* @interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
16492
|
+
*/
|
|
16493
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
16494
|
+
/**
|
|
16495
|
+
*
|
|
16496
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
16497
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter
|
|
16498
|
+
*/
|
|
16499
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
16500
|
+
}
|
|
16345
16501
|
/**
|
|
16346
16502
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
16347
16503
|
* @export
|
|
@@ -16391,46 +16547,21 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
16391
16547
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16392
16548
|
/**
|
|
16393
16549
|
*
|
|
16394
|
-
* @type {
|
|
16550
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16395
16551
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16396
16552
|
*/
|
|
16397
|
-
attributes?:
|
|
16553
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16398
16554
|
/**
|
|
16399
16555
|
*
|
|
16400
|
-
* @type {
|
|
16556
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16401
16557
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16402
16558
|
*/
|
|
16403
|
-
relationships?:
|
|
16559
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16404
16560
|
}
|
|
16405
16561
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
16406
16562
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16407
16563
|
};
|
|
16408
16564
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
16409
|
-
/**
|
|
16410
|
-
*
|
|
16411
|
-
* @export
|
|
16412
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16413
|
-
*/
|
|
16414
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
16415
|
-
/**
|
|
16416
|
-
*
|
|
16417
|
-
* @type {string}
|
|
16418
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16419
|
-
*/
|
|
16420
|
-
title?: string;
|
|
16421
|
-
/**
|
|
16422
|
-
*
|
|
16423
|
-
* @type {string}
|
|
16424
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16425
|
-
*/
|
|
16426
|
-
description?: string;
|
|
16427
|
-
/**
|
|
16428
|
-
*
|
|
16429
|
-
* @type {Array<string>}
|
|
16430
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16431
|
-
*/
|
|
16432
|
-
filterValues?: Array<string>;
|
|
16433
|
-
}
|
|
16434
16565
|
/**
|
|
16435
16566
|
*
|
|
16436
16567
|
* @export
|
|
@@ -16487,32 +16618,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
16487
16618
|
*/
|
|
16488
16619
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
16489
16620
|
}
|
|
16490
|
-
/**
|
|
16491
|
-
*
|
|
16492
|
-
* @export
|
|
16493
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16494
|
-
*/
|
|
16495
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
16496
|
-
/**
|
|
16497
|
-
*
|
|
16498
|
-
* @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
|
|
16499
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16500
|
-
*/
|
|
16501
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
16502
|
-
}
|
|
16503
|
-
/**
|
|
16504
|
-
*
|
|
16505
|
-
* @export
|
|
16506
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16507
|
-
*/
|
|
16508
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
16509
|
-
/**
|
|
16510
|
-
*
|
|
16511
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
16512
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16513
|
-
*/
|
|
16514
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
16515
|
-
}
|
|
16516
16621
|
/**
|
|
16517
16622
|
*
|
|
16518
16623
|
* @export
|
|
@@ -16539,16 +16644,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
16539
16644
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16540
16645
|
/**
|
|
16541
16646
|
*
|
|
16542
|
-
* @type {
|
|
16647
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16543
16648
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16544
16649
|
*/
|
|
16545
|
-
attributes?:
|
|
16650
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16546
16651
|
/**
|
|
16547
16652
|
*
|
|
16548
|
-
* @type {
|
|
16653
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16549
16654
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16550
16655
|
*/
|
|
16551
|
-
relationships?:
|
|
16656
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16552
16657
|
/**
|
|
16553
16658
|
*
|
|
16554
16659
|
* @type {ObjectLinks}
|
|
@@ -16580,16 +16685,16 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
16580
16685
|
id: string;
|
|
16581
16686
|
/**
|
|
16582
16687
|
*
|
|
16583
|
-
* @type {
|
|
16688
|
+
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
16584
16689
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16585
16690
|
*/
|
|
16586
|
-
attributes?:
|
|
16691
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
16587
16692
|
/**
|
|
16588
16693
|
*
|
|
16589
|
-
* @type {
|
|
16694
|
+
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
16590
16695
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16591
16696
|
*/
|
|
16592
|
-
relationships?:
|
|
16697
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
16593
16698
|
}
|
|
16594
16699
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
16595
16700
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -17086,10 +17191,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
17086
17191
|
id: string;
|
|
17087
17192
|
/**
|
|
17088
17193
|
*
|
|
17089
|
-
* @type {
|
|
17194
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17090
17195
|
* @memberof JsonApiWorkspaceSettingIn
|
|
17091
17196
|
*/
|
|
17092
|
-
attributes?:
|
|
17197
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17093
17198
|
}
|
|
17094
17199
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
17095
17200
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17134,10 +17239,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
17134
17239
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17135
17240
|
/**
|
|
17136
17241
|
*
|
|
17137
|
-
* @type {
|
|
17242
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17138
17243
|
* @memberof JsonApiWorkspaceSettingOut
|
|
17139
17244
|
*/
|
|
17140
|
-
attributes?:
|
|
17245
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17141
17246
|
}
|
|
17142
17247
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
17143
17248
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17213,10 +17318,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
17213
17318
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17214
17319
|
/**
|
|
17215
17320
|
*
|
|
17216
|
-
* @type {
|
|
17321
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17217
17322
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
17218
17323
|
*/
|
|
17219
|
-
attributes?:
|
|
17324
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17220
17325
|
/**
|
|
17221
17326
|
*
|
|
17222
17327
|
* @type {ObjectLinks}
|
|
@@ -17248,10 +17353,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
17248
17353
|
id: string;
|
|
17249
17354
|
/**
|
|
17250
17355
|
*
|
|
17251
|
-
* @type {
|
|
17356
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17252
17357
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
17253
17358
|
*/
|
|
17254
|
-
attributes?:
|
|
17359
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17255
17360
|
}
|
|
17256
17361
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
17257
17362
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17290,10 +17395,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
17290
17395
|
id?: string;
|
|
17291
17396
|
/**
|
|
17292
17397
|
*
|
|
17293
|
-
* @type {
|
|
17398
|
+
* @type {JsonApiOrganizationSettingOutAttributes}
|
|
17294
17399
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
17295
17400
|
*/
|
|
17296
|
-
attributes?:
|
|
17401
|
+
attributes?: JsonApiOrganizationSettingOutAttributes;
|
|
17297
17402
|
}
|
|
17298
17403
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
17299
17404
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -18309,6 +18414,98 @@ export declare const RankingFilterRankingFilterOperatorEnum: {
|
|
|
18309
18414
|
readonly BOTTOM: "BOTTOM";
|
|
18310
18415
|
};
|
|
18311
18416
|
export type RankingFilterRankingFilterOperatorEnum = typeof RankingFilterRankingFilterOperatorEnum[keyof typeof RankingFilterRankingFilterOperatorEnum];
|
|
18417
|
+
/**
|
|
18418
|
+
* Custom label object override.
|
|
18419
|
+
* @export
|
|
18420
|
+
* @interface RawCustomLabel
|
|
18421
|
+
*/
|
|
18422
|
+
export interface RawCustomLabel {
|
|
18423
|
+
/**
|
|
18424
|
+
* Override value.
|
|
18425
|
+
* @type {string}
|
|
18426
|
+
* @memberof RawCustomLabel
|
|
18427
|
+
*/
|
|
18428
|
+
title: string;
|
|
18429
|
+
}
|
|
18430
|
+
/**
|
|
18431
|
+
* Custom metric object override.
|
|
18432
|
+
* @export
|
|
18433
|
+
* @interface RawCustomMetric
|
|
18434
|
+
*/
|
|
18435
|
+
export interface RawCustomMetric {
|
|
18436
|
+
/**
|
|
18437
|
+
* Metric title override.
|
|
18438
|
+
* @type {string}
|
|
18439
|
+
* @memberof RawCustomMetric
|
|
18440
|
+
*/
|
|
18441
|
+
title: string;
|
|
18442
|
+
}
|
|
18443
|
+
/**
|
|
18444
|
+
* Custom cell value overrides (IDs will be replaced with specified values).
|
|
18445
|
+
* @export
|
|
18446
|
+
* @interface RawCustomOverride
|
|
18447
|
+
*/
|
|
18448
|
+
export interface RawCustomOverride {
|
|
18449
|
+
/**
|
|
18450
|
+
* Map of CustomLabels with keys used as placeholders in export result.
|
|
18451
|
+
* @type {{ [key: string]: RawCustomLabel; }}
|
|
18452
|
+
* @memberof RawCustomOverride
|
|
18453
|
+
*/
|
|
18454
|
+
labels?: {
|
|
18455
|
+
[key: string]: RawCustomLabel;
|
|
18456
|
+
};
|
|
18457
|
+
/**
|
|
18458
|
+
* Map of CustomMetrics with keys used as placeholders in export result.
|
|
18459
|
+
* @type {{ [key: string]: RawCustomMetric; }}
|
|
18460
|
+
* @memberof RawCustomOverride
|
|
18461
|
+
*/
|
|
18462
|
+
metrics?: {
|
|
18463
|
+
[key: string]: RawCustomMetric;
|
|
18464
|
+
};
|
|
18465
|
+
}
|
|
18466
|
+
/**
|
|
18467
|
+
* Export request object describing the export properties and overrides for raw exports.
|
|
18468
|
+
* @export
|
|
18469
|
+
* @interface RawExportRequest
|
|
18470
|
+
*/
|
|
18471
|
+
export interface RawExportRequest {
|
|
18472
|
+
/**
|
|
18473
|
+
* Requested resulting file type.
|
|
18474
|
+
* @type {string}
|
|
18475
|
+
* @memberof RawExportRequest
|
|
18476
|
+
*/
|
|
18477
|
+
format: RawExportRequestFormatEnum;
|
|
18478
|
+
/**
|
|
18479
|
+
*
|
|
18480
|
+
* @type {AFM}
|
|
18481
|
+
* @memberof RawExportRequest
|
|
18482
|
+
*/
|
|
18483
|
+
execution: AFM;
|
|
18484
|
+
/**
|
|
18485
|
+
* Filename of downloaded file without extension.
|
|
18486
|
+
* @type {string}
|
|
18487
|
+
* @memberof RawExportRequest
|
|
18488
|
+
*/
|
|
18489
|
+
fileName: string;
|
|
18490
|
+
/**
|
|
18491
|
+
*
|
|
18492
|
+
* @type {RawCustomOverride}
|
|
18493
|
+
* @memberof RawExportRequest
|
|
18494
|
+
*/
|
|
18495
|
+
customOverride?: RawCustomOverride;
|
|
18496
|
+
/**
|
|
18497
|
+
*
|
|
18498
|
+
* @type {ExecutionSettings}
|
|
18499
|
+
* @memberof RawExportRequest
|
|
18500
|
+
*/
|
|
18501
|
+
executionSettings?: ExecutionSettings;
|
|
18502
|
+
}
|
|
18503
|
+
export declare const RawExportRequestFormatEnum: {
|
|
18504
|
+
readonly ARROW_FILE: "ARROW_FILE";
|
|
18505
|
+
readonly ARROW_STREAM: "ARROW_STREAM";
|
|
18506
|
+
readonly CSV: "CSV";
|
|
18507
|
+
};
|
|
18508
|
+
export type RawExportRequestFormatEnum = typeof RawExportRequestFormatEnum[keyof typeof RawExportRequestFormatEnum];
|
|
18312
18509
|
/**
|
|
18313
18510
|
* A reference identifier.
|
|
18314
18511
|
* @export
|
|
@@ -18544,9 +18741,12 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
18544
18741
|
readonly SEPARATORS: "SEPARATORS";
|
|
18545
18742
|
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
18546
18743
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
18744
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
18547
18745
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
18548
18746
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
18549
18747
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
18748
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
18749
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
18550
18750
|
};
|
|
18551
18751
|
export type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
|
|
18552
18752
|
/**
|
|
@@ -18687,6 +18887,12 @@ export interface SectionSlideTemplate {
|
|
|
18687
18887
|
* @interface Settings
|
|
18688
18888
|
*/
|
|
18689
18889
|
export interface Settings {
|
|
18890
|
+
/**
|
|
18891
|
+
* Include export info sheet in the exported file. (XLSX)
|
|
18892
|
+
* @type {boolean}
|
|
18893
|
+
* @memberof Settings
|
|
18894
|
+
*/
|
|
18895
|
+
exportInfo?: boolean;
|
|
18690
18896
|
/**
|
|
18691
18897
|
* Merge equal headers in neighbouring cells. (XLSX)
|
|
18692
18898
|
* @type {boolean}
|