@gooddata/api-client-tiger 10.27.0-alpha.8 → 10.27.0
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 +4347 -1738
- package/esm/automation.d.ts +2 -3
- package/esm/automation.d.ts.map +1 -1
- package/esm/automation.js +2 -2
- package/esm/automation.js.map +1 -1
- package/esm/client.d.ts +2 -2
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +1 -1
- package/esm/client.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +60 -8
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +4 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +51 -10
- package/esm/generated/automation-json-api/api.d.ts +1984 -705
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +275 -169
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1046 -7
- package/esm/generated/export-json-api/api.d.ts +591 -4
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +522 -10
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +417 -1
- package/esm/generated/metadata-json-api/api.d.ts +1209 -1183
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +76 -57
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +7953 -7935
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -13
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/generated/scan-json-api/api.d.ts +2 -1
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js +2 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +3 -2
- package/esm/index.d.ts +5 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -1991,6 +1991,12 @@ export interface DeclarativeDataSource {
|
|
|
1991
1991
|
* @memberof DeclarativeDataSource
|
|
1992
1992
|
*/
|
|
1993
1993
|
cacheStrategy?: DeclarativeDataSourceCacheStrategyEnum;
|
|
1994
|
+
/**
|
|
1995
|
+
* Type of authentication used to connect to the database.
|
|
1996
|
+
* @type {string}
|
|
1997
|
+
* @memberof DeclarativeDataSource
|
|
1998
|
+
*/
|
|
1999
|
+
authenticationType?: DeclarativeDataSourceAuthenticationTypeEnum;
|
|
1994
2000
|
}
|
|
1995
2001
|
export declare const DeclarativeDataSourceTypeEnum: {
|
|
1996
2002
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
@@ -2012,10 +2018,11 @@ export declare const DeclarativeDataSourceTypeEnum: {
|
|
|
2012
2018
|
readonly MYSQL: "MYSQL";
|
|
2013
2019
|
readonly MARIADB: "MARIADB";
|
|
2014
2020
|
readonly ORACLE: "ORACLE";
|
|
2015
|
-
readonly PINOT: "PINOT";
|
|
2016
2021
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
2017
2022
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
2018
2023
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
2024
|
+
readonly STARROCKS: "STARROCKS";
|
|
2025
|
+
readonly ATHENA: "ATHENA";
|
|
2019
2026
|
};
|
|
2020
2027
|
export type DeclarativeDataSourceTypeEnum = typeof DeclarativeDataSourceTypeEnum[keyof typeof DeclarativeDataSourceTypeEnum];
|
|
2021
2028
|
export declare const DeclarativeDataSourceCacheStrategyEnum: {
|
|
@@ -2023,6 +2030,14 @@ export declare const DeclarativeDataSourceCacheStrategyEnum: {
|
|
|
2023
2030
|
readonly NEVER: "NEVER";
|
|
2024
2031
|
};
|
|
2025
2032
|
export type DeclarativeDataSourceCacheStrategyEnum = typeof DeclarativeDataSourceCacheStrategyEnum[keyof typeof DeclarativeDataSourceCacheStrategyEnum];
|
|
2033
|
+
export declare const DeclarativeDataSourceAuthenticationTypeEnum: {
|
|
2034
|
+
readonly USERNAME_PASSWORD: "USERNAME_PASSWORD";
|
|
2035
|
+
readonly TOKEN: "TOKEN";
|
|
2036
|
+
readonly KEY_PAIR: "KEY_PAIR";
|
|
2037
|
+
readonly CLIENT_SECRET: "CLIENT_SECRET";
|
|
2038
|
+
readonly ACCESS_TOKEN: "ACCESS_TOKEN";
|
|
2039
|
+
};
|
|
2040
|
+
export type DeclarativeDataSourceAuthenticationTypeEnum = typeof DeclarativeDataSourceAuthenticationTypeEnum[keyof typeof DeclarativeDataSourceAuthenticationTypeEnum];
|
|
2026
2041
|
/**
|
|
2027
2042
|
*
|
|
2028
2043
|
* @export
|
|
@@ -3324,6 +3339,7 @@ export declare const DeclarativeSingleWorkspacePermissionNameEnum: {
|
|
|
3324
3339
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
3325
3340
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
3326
3341
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
3342
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
3327
3343
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
3328
3344
|
readonly VIEW: "VIEW";
|
|
3329
3345
|
};
|
|
@@ -3913,7 +3929,7 @@ export interface DeclarativeWorkspaceDataFilter {
|
|
|
3913
3929
|
* @type {WorkspaceIdentifier}
|
|
3914
3930
|
* @memberof DeclarativeWorkspaceDataFilter
|
|
3915
3931
|
*/
|
|
3916
|
-
workspace
|
|
3932
|
+
workspace: WorkspaceIdentifier;
|
|
3917
3933
|
}
|
|
3918
3934
|
/**
|
|
3919
3935
|
*
|
|
@@ -4055,6 +4071,7 @@ export declare const DeclarativeWorkspaceHierarchyPermissionNameEnum: {
|
|
|
4055
4071
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
4056
4072
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
4057
4073
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
4074
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
4058
4075
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
4059
4076
|
readonly VIEW: "VIEW";
|
|
4060
4077
|
};
|
|
@@ -4893,10 +4910,10 @@ export interface JsonApiAnalyticalDashboardOutList {
|
|
|
4893
4910
|
links?: ListLinks;
|
|
4894
4911
|
/**
|
|
4895
4912
|
*
|
|
4896
|
-
* @type {
|
|
4913
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
4897
4914
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
4898
4915
|
*/
|
|
4899
|
-
meta?:
|
|
4916
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
4900
4917
|
/**
|
|
4901
4918
|
* Included resources
|
|
4902
4919
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -5352,10 +5369,23 @@ export interface JsonApiApiTokenOutList {
|
|
|
5352
5369
|
links?: ListLinks;
|
|
5353
5370
|
/**
|
|
5354
5371
|
*
|
|
5355
|
-
* @type {
|
|
5372
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5356
5373
|
* @memberof JsonApiApiTokenOutList
|
|
5357
5374
|
*/
|
|
5358
|
-
meta?:
|
|
5375
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5376
|
+
}
|
|
5377
|
+
/**
|
|
5378
|
+
*
|
|
5379
|
+
* @export
|
|
5380
|
+
* @interface JsonApiApiTokenOutListMeta
|
|
5381
|
+
*/
|
|
5382
|
+
export interface JsonApiApiTokenOutListMeta {
|
|
5383
|
+
/**
|
|
5384
|
+
*
|
|
5385
|
+
* @type {PageMetadata}
|
|
5386
|
+
* @memberof JsonApiApiTokenOutListMeta
|
|
5387
|
+
*/
|
|
5388
|
+
page?: PageMetadata;
|
|
5359
5389
|
}
|
|
5360
5390
|
/**
|
|
5361
5391
|
*
|
|
@@ -5597,10 +5627,10 @@ export interface JsonApiAttributeHierarchyOutList {
|
|
|
5597
5627
|
links?: ListLinks;
|
|
5598
5628
|
/**
|
|
5599
5629
|
*
|
|
5600
|
-
* @type {
|
|
5630
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5601
5631
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
5602
5632
|
*/
|
|
5603
|
-
meta?:
|
|
5633
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5604
5634
|
/**
|
|
5605
5635
|
* Included resources
|
|
5606
5636
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -5967,10 +5997,10 @@ export interface JsonApiAttributeOutList {
|
|
|
5967
5997
|
links?: ListLinks;
|
|
5968
5998
|
/**
|
|
5969
5999
|
*
|
|
5970
|
-
* @type {
|
|
6000
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
5971
6001
|
* @memberof JsonApiAttributeOutList
|
|
5972
6002
|
*/
|
|
5973
|
-
meta?:
|
|
6003
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
5974
6004
|
/**
|
|
5975
6005
|
* Included resources
|
|
5976
6006
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -6251,10 +6281,10 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6251
6281
|
details?: any;
|
|
6252
6282
|
/**
|
|
6253
6283
|
*
|
|
6254
|
-
* @type {
|
|
6284
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
6255
6285
|
* @memberof JsonApiAutomationOutAttributes
|
|
6256
6286
|
*/
|
|
6257
|
-
metadata?:
|
|
6287
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
6258
6288
|
/**
|
|
6259
6289
|
* Current state of the automation.
|
|
6260
6290
|
* @type {string}
|
|
@@ -6263,34 +6293,34 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6263
6293
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6264
6294
|
/**
|
|
6265
6295
|
*
|
|
6266
|
-
* @type {
|
|
6296
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
6267
6297
|
* @memberof JsonApiAutomationOutAttributes
|
|
6268
6298
|
*/
|
|
6269
|
-
schedule?:
|
|
6299
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
6270
6300
|
/**
|
|
6271
6301
|
*
|
|
6272
|
-
* @type {
|
|
6302
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
6273
6303
|
* @memberof JsonApiAutomationOutAttributes
|
|
6274
6304
|
*/
|
|
6275
|
-
alert?:
|
|
6305
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
6276
6306
|
/**
|
|
6277
6307
|
*
|
|
6278
|
-
* @type {Array<
|
|
6308
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
6279
6309
|
* @memberof JsonApiAutomationOutAttributes
|
|
6280
6310
|
*/
|
|
6281
|
-
tabularExports?: Array<
|
|
6311
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
6282
6312
|
/**
|
|
6283
6313
|
*
|
|
6284
|
-
* @type {Array<
|
|
6314
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
6285
6315
|
* @memberof JsonApiAutomationOutAttributes
|
|
6286
6316
|
*/
|
|
6287
|
-
visualExports?: Array<
|
|
6317
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
6288
6318
|
/**
|
|
6289
6319
|
* External recipients of the automation action results.
|
|
6290
|
-
* @type {Array<
|
|
6320
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
6291
6321
|
* @memberof JsonApiAutomationOutAttributes
|
|
6292
6322
|
*/
|
|
6293
|
-
externalRecipients?: Array<
|
|
6323
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
6294
6324
|
/**
|
|
6295
6325
|
*
|
|
6296
6326
|
* @type {string}
|
|
@@ -6309,125 +6339,6 @@ export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
|
6309
6339
|
readonly PAUSED: "PAUSED";
|
|
6310
6340
|
};
|
|
6311
6341
|
export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOutAttributesStateEnum[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
6312
|
-
/**
|
|
6313
|
-
*
|
|
6314
|
-
* @export
|
|
6315
|
-
* @interface JsonApiAutomationOutAttributesAlert
|
|
6316
|
-
*/
|
|
6317
|
-
export interface JsonApiAutomationOutAttributesAlert {
|
|
6318
|
-
/**
|
|
6319
|
-
*
|
|
6320
|
-
* @type {AlertAfm}
|
|
6321
|
-
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6322
|
-
*/
|
|
6323
|
-
execution: AlertAfm;
|
|
6324
|
-
/**
|
|
6325
|
-
*
|
|
6326
|
-
* @type {AlertCondition}
|
|
6327
|
-
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6328
|
-
*/
|
|
6329
|
-
condition: AlertCondition;
|
|
6330
|
-
/**
|
|
6331
|
-
* 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.
|
|
6332
|
-
* @type {string}
|
|
6333
|
-
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6334
|
-
*/
|
|
6335
|
-
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
6336
|
-
}
|
|
6337
|
-
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
6338
|
-
readonly ALWAYS: "ALWAYS";
|
|
6339
|
-
readonly ONCE: "ONCE";
|
|
6340
|
-
};
|
|
6341
|
-
export type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
6342
|
-
/**
|
|
6343
|
-
*
|
|
6344
|
-
* @export
|
|
6345
|
-
* @interface JsonApiAutomationOutAttributesExternalRecipients
|
|
6346
|
-
*/
|
|
6347
|
-
export interface JsonApiAutomationOutAttributesExternalRecipients {
|
|
6348
|
-
/**
|
|
6349
|
-
* E-mail address to send notifications from.
|
|
6350
|
-
* @type {string}
|
|
6351
|
-
* @memberof JsonApiAutomationOutAttributesExternalRecipients
|
|
6352
|
-
*/
|
|
6353
|
-
email: string;
|
|
6354
|
-
}
|
|
6355
|
-
/**
|
|
6356
|
-
* Additional information for the automation.
|
|
6357
|
-
* @export
|
|
6358
|
-
* @interface JsonApiAutomationOutAttributesMetadata
|
|
6359
|
-
*/
|
|
6360
|
-
export interface JsonApiAutomationOutAttributesMetadata {
|
|
6361
|
-
/**
|
|
6362
|
-
*
|
|
6363
|
-
* @type {string}
|
|
6364
|
-
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6365
|
-
*/
|
|
6366
|
-
widget?: string;
|
|
6367
|
-
/**
|
|
6368
|
-
*
|
|
6369
|
-
* @type {Array<VisibleFilter>}
|
|
6370
|
-
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6371
|
-
*/
|
|
6372
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
6373
|
-
}
|
|
6374
|
-
/**
|
|
6375
|
-
*
|
|
6376
|
-
* @export
|
|
6377
|
-
* @interface JsonApiAutomationOutAttributesSchedule
|
|
6378
|
-
*/
|
|
6379
|
-
export interface JsonApiAutomationOutAttributesSchedule {
|
|
6380
|
-
/**
|
|
6381
|
-
* 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.
|
|
6382
|
-
* @type {string}
|
|
6383
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6384
|
-
*/
|
|
6385
|
-
cron: string;
|
|
6386
|
-
/**
|
|
6387
|
-
* Human-readable description of the cron expression.
|
|
6388
|
-
* @type {string}
|
|
6389
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6390
|
-
*/
|
|
6391
|
-
cronDescription?: string;
|
|
6392
|
-
/**
|
|
6393
|
-
* Timezone in which the schedule is defined.
|
|
6394
|
-
* @type {string}
|
|
6395
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6396
|
-
*/
|
|
6397
|
-
timezone: string;
|
|
6398
|
-
/**
|
|
6399
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6400
|
-
* @type {string}
|
|
6401
|
-
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6402
|
-
*/
|
|
6403
|
-
firstRun?: string;
|
|
6404
|
-
}
|
|
6405
|
-
/**
|
|
6406
|
-
*
|
|
6407
|
-
* @export
|
|
6408
|
-
* @interface JsonApiAutomationOutAttributesTabularExports
|
|
6409
|
-
*/
|
|
6410
|
-
export interface JsonApiAutomationOutAttributesTabularExports {
|
|
6411
|
-
/**
|
|
6412
|
-
*
|
|
6413
|
-
* @type {TabularExportRequest}
|
|
6414
|
-
* @memberof JsonApiAutomationOutAttributesTabularExports
|
|
6415
|
-
*/
|
|
6416
|
-
requestPayload: TabularExportRequest;
|
|
6417
|
-
}
|
|
6418
|
-
/**
|
|
6419
|
-
*
|
|
6420
|
-
* @export
|
|
6421
|
-
* @interface JsonApiAutomationOutAttributesVisualExports
|
|
6422
|
-
*/
|
|
6423
|
-
export interface JsonApiAutomationOutAttributesVisualExports {
|
|
6424
|
-
/**
|
|
6425
|
-
*
|
|
6426
|
-
* @type {VisualExportRequest}
|
|
6427
|
-
* @memberof JsonApiAutomationOutAttributesVisualExports
|
|
6428
|
-
*/
|
|
6429
|
-
requestPayload: VisualExportRequest;
|
|
6430
|
-
}
|
|
6431
6342
|
/**
|
|
6432
6343
|
*
|
|
6433
6344
|
* @export
|
|
@@ -6478,10 +6389,10 @@ export interface JsonApiAutomationOutList {
|
|
|
6478
6389
|
links?: ListLinks;
|
|
6479
6390
|
/**
|
|
6480
6391
|
*
|
|
6481
|
-
* @type {
|
|
6392
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6482
6393
|
* @memberof JsonApiAutomationOutList
|
|
6483
6394
|
*/
|
|
6484
|
-
meta?:
|
|
6395
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6485
6396
|
/**
|
|
6486
6397
|
* Included resources
|
|
6487
6398
|
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
@@ -6497,16 +6408,16 @@ export interface JsonApiAutomationOutList {
|
|
|
6497
6408
|
export interface JsonApiAutomationOutRelationships {
|
|
6498
6409
|
/**
|
|
6499
6410
|
*
|
|
6500
|
-
* @type {
|
|
6411
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
6501
6412
|
* @memberof JsonApiAutomationOutRelationships
|
|
6502
6413
|
*/
|
|
6503
|
-
notificationChannel?:
|
|
6414
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
6504
6415
|
/**
|
|
6505
6416
|
*
|
|
6506
|
-
* @type {
|
|
6417
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
6507
6418
|
* @memberof JsonApiAutomationOutRelationships
|
|
6508
6419
|
*/
|
|
6509
|
-
analyticalDashboard?:
|
|
6420
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6510
6421
|
/**
|
|
6511
6422
|
*
|
|
6512
6423
|
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
@@ -6521,55 +6432,16 @@ export interface JsonApiAutomationOutRelationships {
|
|
|
6521
6432
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6522
6433
|
/**
|
|
6523
6434
|
*
|
|
6524
|
-
* @type {
|
|
6435
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
6525
6436
|
* @memberof JsonApiAutomationOutRelationships
|
|
6526
6437
|
*/
|
|
6527
|
-
exportDefinitions?:
|
|
6438
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
6528
6439
|
/**
|
|
6529
6440
|
*
|
|
6530
|
-
* @type {
|
|
6441
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
6531
6442
|
* @memberof JsonApiAutomationOutRelationships
|
|
6532
6443
|
*/
|
|
6533
|
-
recipients?:
|
|
6534
|
-
}
|
|
6535
|
-
/**
|
|
6536
|
-
*
|
|
6537
|
-
* @export
|
|
6538
|
-
* @interface JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6539
|
-
*/
|
|
6540
|
-
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
6541
|
-
/**
|
|
6542
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6543
|
-
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6544
|
-
* @memberof JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6545
|
-
*/
|
|
6546
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6547
|
-
}
|
|
6548
|
-
/**
|
|
6549
|
-
*
|
|
6550
|
-
* @export
|
|
6551
|
-
* @interface JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6552
|
-
*/
|
|
6553
|
-
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
6554
|
-
/**
|
|
6555
|
-
*
|
|
6556
|
-
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6557
|
-
* @memberof JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6558
|
-
*/
|
|
6559
|
-
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6560
|
-
}
|
|
6561
|
-
/**
|
|
6562
|
-
*
|
|
6563
|
-
* @export
|
|
6564
|
-
* @interface JsonApiAutomationOutRelationshipsRecipients
|
|
6565
|
-
*/
|
|
6566
|
-
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
6567
|
-
/**
|
|
6568
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6569
|
-
* @type {Array<JsonApiUserLinkage>}
|
|
6570
|
-
* @memberof JsonApiAutomationOutRelationshipsRecipients
|
|
6571
|
-
*/
|
|
6572
|
-
data: Array<JsonApiUserLinkage>;
|
|
6444
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
6573
6445
|
}
|
|
6574
6446
|
/**
|
|
6575
6447
|
*
|
|
@@ -6691,10 +6563,10 @@ export interface JsonApiAutomationPatchAttributes {
|
|
|
6691
6563
|
details?: any;
|
|
6692
6564
|
/**
|
|
6693
6565
|
*
|
|
6694
|
-
* @type {
|
|
6566
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
6695
6567
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6696
6568
|
*/
|
|
6697
|
-
metadata?:
|
|
6569
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
6698
6570
|
/**
|
|
6699
6571
|
* Current state of the automation.
|
|
6700
6572
|
* @type {string}
|
|
@@ -6703,34 +6575,34 @@ export interface JsonApiAutomationPatchAttributes {
|
|
|
6703
6575
|
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
6704
6576
|
/**
|
|
6705
6577
|
*
|
|
6706
|
-
* @type {
|
|
6578
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
6707
6579
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6708
6580
|
*/
|
|
6709
|
-
schedule?:
|
|
6581
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
6710
6582
|
/**
|
|
6711
6583
|
*
|
|
6712
|
-
* @type {
|
|
6584
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
6713
6585
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6714
6586
|
*/
|
|
6715
|
-
alert?:
|
|
6587
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
6716
6588
|
/**
|
|
6717
6589
|
*
|
|
6718
|
-
* @type {Array<
|
|
6590
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
6719
6591
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6720
6592
|
*/
|
|
6721
|
-
tabularExports?: Array<
|
|
6593
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
6722
6594
|
/**
|
|
6723
6595
|
*
|
|
6724
|
-
* @type {Array<
|
|
6596
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
6725
6597
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6726
6598
|
*/
|
|
6727
|
-
visualExports?: Array<
|
|
6599
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
6728
6600
|
/**
|
|
6729
6601
|
* External recipients of the automation action results.
|
|
6730
|
-
* @type {Array<
|
|
6602
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
6731
6603
|
* @memberof JsonApiAutomationPatchAttributes
|
|
6732
6604
|
*/
|
|
6733
|
-
externalRecipients?: Array<
|
|
6605
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
6734
6606
|
}
|
|
6735
6607
|
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
6736
6608
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -6740,130 +6612,301 @@ export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomation
|
|
|
6740
6612
|
/**
|
|
6741
6613
|
*
|
|
6742
6614
|
* @export
|
|
6743
|
-
* @interface
|
|
6615
|
+
* @interface JsonApiAutomationPatchAttributesAlert
|
|
6744
6616
|
*/
|
|
6745
|
-
export interface
|
|
6617
|
+
export interface JsonApiAutomationPatchAttributesAlert {
|
|
6746
6618
|
/**
|
|
6747
6619
|
*
|
|
6748
|
-
* @type {
|
|
6749
|
-
* @memberof
|
|
6620
|
+
* @type {AlertAfm}
|
|
6621
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6750
6622
|
*/
|
|
6751
|
-
|
|
6623
|
+
execution: AlertAfm;
|
|
6624
|
+
/**
|
|
6625
|
+
*
|
|
6626
|
+
* @type {AlertCondition}
|
|
6627
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6628
|
+
*/
|
|
6629
|
+
condition: AlertCondition;
|
|
6630
|
+
/**
|
|
6631
|
+
* 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.
|
|
6632
|
+
* @type {string}
|
|
6633
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
6634
|
+
*/
|
|
6635
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
6752
6636
|
}
|
|
6637
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
6638
|
+
readonly ALWAYS: "ALWAYS";
|
|
6639
|
+
readonly ONCE: "ONCE";
|
|
6640
|
+
};
|
|
6641
|
+
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
6753
6642
|
/**
|
|
6754
6643
|
*
|
|
6755
6644
|
* @export
|
|
6756
|
-
* @interface
|
|
6645
|
+
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
6757
6646
|
*/
|
|
6758
|
-
export interface
|
|
6759
|
-
/**
|
|
6760
|
-
*
|
|
6761
|
-
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
6762
|
-
* @memberof JsonApiAutomationPatchRelationships
|
|
6763
|
-
*/
|
|
6764
|
-
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
6647
|
+
export interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
6765
6648
|
/**
|
|
6766
|
-
*
|
|
6767
|
-
* @type {
|
|
6768
|
-
* @memberof
|
|
6649
|
+
* E-mail address to send notifications from.
|
|
6650
|
+
* @type {string}
|
|
6651
|
+
* @memberof JsonApiAutomationPatchAttributesExternalRecipients
|
|
6769
6652
|
*/
|
|
6770
|
-
|
|
6653
|
+
email: string;
|
|
6654
|
+
}
|
|
6655
|
+
/**
|
|
6656
|
+
* Additional information for the automation.
|
|
6657
|
+
* @export
|
|
6658
|
+
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
6659
|
+
*/
|
|
6660
|
+
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
6771
6661
|
/**
|
|
6772
6662
|
*
|
|
6773
|
-
* @type {
|
|
6774
|
-
* @memberof
|
|
6663
|
+
* @type {string}
|
|
6664
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
6775
6665
|
*/
|
|
6776
|
-
|
|
6666
|
+
widget?: string;
|
|
6777
6667
|
/**
|
|
6778
6668
|
*
|
|
6779
|
-
* @type {
|
|
6780
|
-
* @memberof
|
|
6669
|
+
* @type {Array<VisibleFilter>}
|
|
6670
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
6781
6671
|
*/
|
|
6782
|
-
|
|
6672
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
6783
6673
|
}
|
|
6784
6674
|
/**
|
|
6785
|
-
*
|
|
6786
|
-
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6787
|
-
* @export
|
|
6788
|
-
*/
|
|
6789
|
-
export type JsonApiAutomationToOneLinkage = JsonApiAutomationLinkage;
|
|
6790
|
-
/**
|
|
6791
|
-
* JSON:API representation of colorPalette entity.
|
|
6675
|
+
*
|
|
6792
6676
|
* @export
|
|
6793
|
-
* @interface
|
|
6677
|
+
* @interface JsonApiAutomationPatchAttributesSchedule
|
|
6794
6678
|
*/
|
|
6795
|
-
export interface
|
|
6679
|
+
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
6796
6680
|
/**
|
|
6797
|
-
*
|
|
6681
|
+
* 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.
|
|
6798
6682
|
* @type {string}
|
|
6799
|
-
* @memberof
|
|
6683
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6800
6684
|
*/
|
|
6801
|
-
|
|
6685
|
+
cron: string;
|
|
6802
6686
|
/**
|
|
6803
|
-
*
|
|
6687
|
+
* Human-readable description of the cron expression.
|
|
6804
6688
|
* @type {string}
|
|
6805
|
-
* @memberof
|
|
6689
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6806
6690
|
*/
|
|
6807
|
-
|
|
6691
|
+
cronDescription?: string;
|
|
6808
6692
|
/**
|
|
6809
|
-
*
|
|
6810
|
-
* @type {
|
|
6811
|
-
* @memberof
|
|
6693
|
+
* Timezone in which the schedule is defined.
|
|
6694
|
+
* @type {string}
|
|
6695
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6812
6696
|
*/
|
|
6813
|
-
|
|
6697
|
+
timezone: string;
|
|
6698
|
+
/**
|
|
6699
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6700
|
+
* @type {string}
|
|
6701
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6702
|
+
*/
|
|
6703
|
+
firstRun?: string;
|
|
6814
6704
|
}
|
|
6815
|
-
export declare const JsonApiColorPaletteInTypeEnum: {
|
|
6816
|
-
readonly COLOR_PALETTE: "colorPalette";
|
|
6817
|
-
};
|
|
6818
|
-
export type JsonApiColorPaletteInTypeEnum = typeof JsonApiColorPaletteInTypeEnum[keyof typeof JsonApiColorPaletteInTypeEnum];
|
|
6819
6705
|
/**
|
|
6820
6706
|
*
|
|
6821
6707
|
* @export
|
|
6822
|
-
* @interface
|
|
6708
|
+
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
6823
6709
|
*/
|
|
6824
|
-
export interface
|
|
6710
|
+
export interface JsonApiAutomationPatchAttributesTabularExports {
|
|
6825
6711
|
/**
|
|
6826
6712
|
*
|
|
6827
|
-
* @type {
|
|
6828
|
-
* @memberof
|
|
6713
|
+
* @type {TabularExportRequest}
|
|
6714
|
+
* @memberof JsonApiAutomationPatchAttributesTabularExports
|
|
6829
6715
|
*/
|
|
6830
|
-
|
|
6716
|
+
requestPayload: TabularExportRequest;
|
|
6831
6717
|
}
|
|
6832
6718
|
/**
|
|
6833
|
-
*
|
|
6719
|
+
*
|
|
6834
6720
|
* @export
|
|
6835
|
-
* @interface
|
|
6721
|
+
* @interface JsonApiAutomationPatchAttributesVisualExports
|
|
6836
6722
|
*/
|
|
6837
|
-
export interface
|
|
6838
|
-
/**
|
|
6839
|
-
* Object type
|
|
6840
|
-
* @type {string}
|
|
6841
|
-
* @memberof JsonApiColorPaletteOut
|
|
6842
|
-
*/
|
|
6843
|
-
type: JsonApiColorPaletteOutTypeEnum;
|
|
6844
|
-
/**
|
|
6845
|
-
* API identifier of an object
|
|
6846
|
-
* @type {string}
|
|
6847
|
-
* @memberof JsonApiColorPaletteOut
|
|
6848
|
-
*/
|
|
6849
|
-
id: string;
|
|
6723
|
+
export interface JsonApiAutomationPatchAttributesVisualExports {
|
|
6850
6724
|
/**
|
|
6851
6725
|
*
|
|
6852
|
-
* @type {
|
|
6853
|
-
* @memberof
|
|
6726
|
+
* @type {VisualExportRequest}
|
|
6727
|
+
* @memberof JsonApiAutomationPatchAttributesVisualExports
|
|
6854
6728
|
*/
|
|
6855
|
-
|
|
6729
|
+
requestPayload: VisualExportRequest;
|
|
6856
6730
|
}
|
|
6857
|
-
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
6858
|
-
readonly COLOR_PALETTE: "colorPalette";
|
|
6859
|
-
};
|
|
6860
|
-
export type JsonApiColorPaletteOutTypeEnum = typeof JsonApiColorPaletteOutTypeEnum[keyof typeof JsonApiColorPaletteOutTypeEnum];
|
|
6861
6731
|
/**
|
|
6862
6732
|
*
|
|
6863
6733
|
* @export
|
|
6864
|
-
* @interface
|
|
6734
|
+
* @interface JsonApiAutomationPatchDocument
|
|
6865
6735
|
*/
|
|
6866
|
-
export interface
|
|
6736
|
+
export interface JsonApiAutomationPatchDocument {
|
|
6737
|
+
/**
|
|
6738
|
+
*
|
|
6739
|
+
* @type {JsonApiAutomationPatch}
|
|
6740
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
6741
|
+
*/
|
|
6742
|
+
data: JsonApiAutomationPatch;
|
|
6743
|
+
}
|
|
6744
|
+
/**
|
|
6745
|
+
*
|
|
6746
|
+
* @export
|
|
6747
|
+
* @interface JsonApiAutomationPatchRelationships
|
|
6748
|
+
*/
|
|
6749
|
+
export interface JsonApiAutomationPatchRelationships {
|
|
6750
|
+
/**
|
|
6751
|
+
*
|
|
6752
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
6753
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6754
|
+
*/
|
|
6755
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
6756
|
+
/**
|
|
6757
|
+
*
|
|
6758
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
6759
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6760
|
+
*/
|
|
6761
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6762
|
+
/**
|
|
6763
|
+
*
|
|
6764
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
6765
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6766
|
+
*/
|
|
6767
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
6768
|
+
/**
|
|
6769
|
+
*
|
|
6770
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
6771
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
6772
|
+
*/
|
|
6773
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
6774
|
+
}
|
|
6775
|
+
/**
|
|
6776
|
+
*
|
|
6777
|
+
* @export
|
|
6778
|
+
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
6779
|
+
*/
|
|
6780
|
+
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
6781
|
+
/**
|
|
6782
|
+
*
|
|
6783
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
6784
|
+
* @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
6785
|
+
*/
|
|
6786
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
6787
|
+
}
|
|
6788
|
+
/**
|
|
6789
|
+
*
|
|
6790
|
+
* @export
|
|
6791
|
+
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
6792
|
+
*/
|
|
6793
|
+
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
6794
|
+
/**
|
|
6795
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6796
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6797
|
+
* @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
6798
|
+
*/
|
|
6799
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6800
|
+
}
|
|
6801
|
+
/**
|
|
6802
|
+
*
|
|
6803
|
+
* @export
|
|
6804
|
+
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
6805
|
+
*/
|
|
6806
|
+
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
6807
|
+
/**
|
|
6808
|
+
*
|
|
6809
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6810
|
+
* @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
6811
|
+
*/
|
|
6812
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6813
|
+
}
|
|
6814
|
+
/**
|
|
6815
|
+
*
|
|
6816
|
+
* @export
|
|
6817
|
+
* @interface JsonApiAutomationPatchRelationshipsRecipients
|
|
6818
|
+
*/
|
|
6819
|
+
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
6820
|
+
/**
|
|
6821
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6822
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
6823
|
+
* @memberof JsonApiAutomationPatchRelationshipsRecipients
|
|
6824
|
+
*/
|
|
6825
|
+
data: Array<JsonApiUserLinkage>;
|
|
6826
|
+
}
|
|
6827
|
+
/**
|
|
6828
|
+
* @type JsonApiAutomationToOneLinkage
|
|
6829
|
+
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6830
|
+
* @export
|
|
6831
|
+
*/
|
|
6832
|
+
export type JsonApiAutomationToOneLinkage = JsonApiAutomationLinkage;
|
|
6833
|
+
/**
|
|
6834
|
+
* JSON:API representation of colorPalette entity.
|
|
6835
|
+
* @export
|
|
6836
|
+
* @interface JsonApiColorPaletteIn
|
|
6837
|
+
*/
|
|
6838
|
+
export interface JsonApiColorPaletteIn {
|
|
6839
|
+
/**
|
|
6840
|
+
* Object type
|
|
6841
|
+
* @type {string}
|
|
6842
|
+
* @memberof JsonApiColorPaletteIn
|
|
6843
|
+
*/
|
|
6844
|
+
type: JsonApiColorPaletteInTypeEnum;
|
|
6845
|
+
/**
|
|
6846
|
+
* API identifier of an object
|
|
6847
|
+
* @type {string}
|
|
6848
|
+
* @memberof JsonApiColorPaletteIn
|
|
6849
|
+
*/
|
|
6850
|
+
id: string;
|
|
6851
|
+
/**
|
|
6852
|
+
*
|
|
6853
|
+
* @type {JsonApiColorPaletteOutAttributes}
|
|
6854
|
+
* @memberof JsonApiColorPaletteIn
|
|
6855
|
+
*/
|
|
6856
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
6857
|
+
}
|
|
6858
|
+
export declare const JsonApiColorPaletteInTypeEnum: {
|
|
6859
|
+
readonly COLOR_PALETTE: "colorPalette";
|
|
6860
|
+
};
|
|
6861
|
+
export type JsonApiColorPaletteInTypeEnum = typeof JsonApiColorPaletteInTypeEnum[keyof typeof JsonApiColorPaletteInTypeEnum];
|
|
6862
|
+
/**
|
|
6863
|
+
*
|
|
6864
|
+
* @export
|
|
6865
|
+
* @interface JsonApiColorPaletteInDocument
|
|
6866
|
+
*/
|
|
6867
|
+
export interface JsonApiColorPaletteInDocument {
|
|
6868
|
+
/**
|
|
6869
|
+
*
|
|
6870
|
+
* @type {JsonApiColorPaletteIn}
|
|
6871
|
+
* @memberof JsonApiColorPaletteInDocument
|
|
6872
|
+
*/
|
|
6873
|
+
data: JsonApiColorPaletteIn;
|
|
6874
|
+
}
|
|
6875
|
+
/**
|
|
6876
|
+
* JSON:API representation of colorPalette entity.
|
|
6877
|
+
* @export
|
|
6878
|
+
* @interface JsonApiColorPaletteOut
|
|
6879
|
+
*/
|
|
6880
|
+
export interface JsonApiColorPaletteOut {
|
|
6881
|
+
/**
|
|
6882
|
+
* Object type
|
|
6883
|
+
* @type {string}
|
|
6884
|
+
* @memberof JsonApiColorPaletteOut
|
|
6885
|
+
*/
|
|
6886
|
+
type: JsonApiColorPaletteOutTypeEnum;
|
|
6887
|
+
/**
|
|
6888
|
+
* API identifier of an object
|
|
6889
|
+
* @type {string}
|
|
6890
|
+
* @memberof JsonApiColorPaletteOut
|
|
6891
|
+
*/
|
|
6892
|
+
id: string;
|
|
6893
|
+
/**
|
|
6894
|
+
*
|
|
6895
|
+
* @type {JsonApiColorPaletteOutAttributes}
|
|
6896
|
+
* @memberof JsonApiColorPaletteOut
|
|
6897
|
+
*/
|
|
6898
|
+
attributes: JsonApiColorPaletteOutAttributes;
|
|
6899
|
+
}
|
|
6900
|
+
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
6901
|
+
readonly COLOR_PALETTE: "colorPalette";
|
|
6902
|
+
};
|
|
6903
|
+
export type JsonApiColorPaletteOutTypeEnum = typeof JsonApiColorPaletteOutTypeEnum[keyof typeof JsonApiColorPaletteOutTypeEnum];
|
|
6904
|
+
/**
|
|
6905
|
+
*
|
|
6906
|
+
* @export
|
|
6907
|
+
* @interface JsonApiColorPaletteOutAttributes
|
|
6908
|
+
*/
|
|
6909
|
+
export interface JsonApiColorPaletteOutAttributes {
|
|
6867
6910
|
/**
|
|
6868
6911
|
*
|
|
6869
6912
|
* @type {string}
|
|
@@ -6916,23 +6959,10 @@ export interface JsonApiColorPaletteOutList {
|
|
|
6916
6959
|
links?: ListLinks;
|
|
6917
6960
|
/**
|
|
6918
6961
|
*
|
|
6919
|
-
* @type {
|
|
6962
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6920
6963
|
* @memberof JsonApiColorPaletteOutList
|
|
6921
6964
|
*/
|
|
6922
|
-
meta?:
|
|
6923
|
-
}
|
|
6924
|
-
/**
|
|
6925
|
-
*
|
|
6926
|
-
* @export
|
|
6927
|
-
* @interface JsonApiColorPaletteOutListMeta
|
|
6928
|
-
*/
|
|
6929
|
-
export interface JsonApiColorPaletteOutListMeta {
|
|
6930
|
-
/**
|
|
6931
|
-
*
|
|
6932
|
-
* @type {PageMetadata}
|
|
6933
|
-
* @memberof JsonApiColorPaletteOutListMeta
|
|
6934
|
-
*/
|
|
6935
|
-
page?: PageMetadata;
|
|
6965
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6936
6966
|
}
|
|
6937
6967
|
/**
|
|
6938
6968
|
*
|
|
@@ -7304,10 +7334,10 @@ export interface JsonApiCspDirectiveOutList {
|
|
|
7304
7334
|
links?: ListLinks;
|
|
7305
7335
|
/**
|
|
7306
7336
|
*
|
|
7307
|
-
* @type {
|
|
7337
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7308
7338
|
* @memberof JsonApiCspDirectiveOutList
|
|
7309
7339
|
*/
|
|
7310
|
-
meta?:
|
|
7340
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7311
7341
|
}
|
|
7312
7342
|
/**
|
|
7313
7343
|
*
|
|
@@ -7534,10 +7564,10 @@ export interface JsonApiCustomApplicationSettingOutList {
|
|
|
7534
7564
|
links?: ListLinks;
|
|
7535
7565
|
/**
|
|
7536
7566
|
*
|
|
7537
|
-
* @type {
|
|
7567
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7538
7568
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
7539
7569
|
*/
|
|
7540
|
-
meta?:
|
|
7570
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7541
7571
|
}
|
|
7542
7572
|
/**
|
|
7543
7573
|
*
|
|
@@ -7883,10 +7913,10 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
7883
7913
|
links?: ListLinks;
|
|
7884
7914
|
/**
|
|
7885
7915
|
*
|
|
7886
|
-
* @type {
|
|
7916
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
7887
7917
|
* @memberof JsonApiDashboardPluginOutList
|
|
7888
7918
|
*/
|
|
7889
|
-
meta?:
|
|
7919
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
7890
7920
|
/**
|
|
7891
7921
|
* Included resources
|
|
7892
7922
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -8101,10 +8131,10 @@ export interface JsonApiDataSourceIdentifierOut {
|
|
|
8101
8131
|
id: string;
|
|
8102
8132
|
/**
|
|
8103
8133
|
*
|
|
8104
|
-
* @type {
|
|
8134
|
+
* @type {JsonApiDataSourceIdentifierOutMeta}
|
|
8105
8135
|
* @memberof JsonApiDataSourceIdentifierOut
|
|
8106
8136
|
*/
|
|
8107
|
-
meta?:
|
|
8137
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
8108
8138
|
/**
|
|
8109
8139
|
*
|
|
8110
8140
|
* @type {JsonApiDataSourceIdentifierOutAttributes}
|
|
@@ -8161,10 +8191,11 @@ export declare const JsonApiDataSourceIdentifierOutAttributesTypeEnum: {
|
|
|
8161
8191
|
readonly MYSQL: "MYSQL";
|
|
8162
8192
|
readonly MARIADB: "MARIADB";
|
|
8163
8193
|
readonly ORACLE: "ORACLE";
|
|
8164
|
-
readonly PINOT: "PINOT";
|
|
8165
8194
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8166
8195
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8167
8196
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
8197
|
+
readonly STARROCKS: "STARROCKS";
|
|
8198
|
+
readonly ATHENA: "ATHENA";
|
|
8168
8199
|
};
|
|
8169
8200
|
export type JsonApiDataSourceIdentifierOutAttributesTypeEnum = typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum[keyof typeof JsonApiDataSourceIdentifierOutAttributesTypeEnum];
|
|
8170
8201
|
/**
|
|
@@ -8206,11 +8237,29 @@ export interface JsonApiDataSourceIdentifierOutList {
|
|
|
8206
8237
|
links?: ListLinks;
|
|
8207
8238
|
/**
|
|
8208
8239
|
*
|
|
8209
|
-
* @type {
|
|
8240
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8210
8241
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
8211
8242
|
*/
|
|
8212
|
-
meta?:
|
|
8243
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8244
|
+
}
|
|
8245
|
+
/**
|
|
8246
|
+
*
|
|
8247
|
+
* @export
|
|
8248
|
+
* @interface JsonApiDataSourceIdentifierOutMeta
|
|
8249
|
+
*/
|
|
8250
|
+
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
8251
|
+
/**
|
|
8252
|
+
* List of valid permissions for a logged-in user.
|
|
8253
|
+
* @type {Array<string>}
|
|
8254
|
+
* @memberof JsonApiDataSourceIdentifierOutMeta
|
|
8255
|
+
*/
|
|
8256
|
+
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
8213
8257
|
}
|
|
8258
|
+
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
8259
|
+
readonly MANAGE: "MANAGE";
|
|
8260
|
+
readonly USE: "USE";
|
|
8261
|
+
};
|
|
8262
|
+
export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
8214
8263
|
/**
|
|
8215
8264
|
*
|
|
8216
8265
|
* @export
|
|
@@ -8231,10 +8280,10 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
8231
8280
|
id: string;
|
|
8232
8281
|
/**
|
|
8233
8282
|
*
|
|
8234
|
-
* @type {
|
|
8283
|
+
* @type {JsonApiDataSourceIdentifierOutMeta}
|
|
8235
8284
|
* @memberof JsonApiDataSourceIdentifierOutWithLinks
|
|
8236
8285
|
*/
|
|
8237
|
-
meta?:
|
|
8286
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
8238
8287
|
/**
|
|
8239
8288
|
*
|
|
8240
8289
|
* @type {JsonApiDataSourceIdentifierOutAttributes}
|
|
@@ -8355,10 +8404,10 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
8355
8404
|
clientSecret?: string | null;
|
|
8356
8405
|
/**
|
|
8357
8406
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
8358
|
-
* @type {Array<
|
|
8407
|
+
* @type {Array<JsonApiDataSourceOutAttributesParameters>}
|
|
8359
8408
|
* @memberof JsonApiDataSourceInAttributes
|
|
8360
8409
|
*/
|
|
8361
|
-
parameters?: Array<
|
|
8410
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
|
|
8362
8411
|
/**
|
|
8363
8412
|
* Determines how the results coming from a particular datasource should be cached.
|
|
8364
8413
|
* @type {string}
|
|
@@ -8386,10 +8435,11 @@ export declare const JsonApiDataSourceInAttributesTypeEnum: {
|
|
|
8386
8435
|
readonly MYSQL: "MYSQL";
|
|
8387
8436
|
readonly MARIADB: "MARIADB";
|
|
8388
8437
|
readonly ORACLE: "ORACLE";
|
|
8389
|
-
readonly PINOT: "PINOT";
|
|
8390
8438
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8391
8439
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8392
8440
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
8441
|
+
readonly STARROCKS: "STARROCKS";
|
|
8442
|
+
readonly ATHENA: "ATHENA";
|
|
8393
8443
|
};
|
|
8394
8444
|
export type JsonApiDataSourceInAttributesTypeEnum = typeof JsonApiDataSourceInAttributesTypeEnum[keyof typeof JsonApiDataSourceInAttributesTypeEnum];
|
|
8395
8445
|
export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
@@ -8430,10 +8480,10 @@ export interface JsonApiDataSourceOut {
|
|
|
8430
8480
|
id: string;
|
|
8431
8481
|
/**
|
|
8432
8482
|
*
|
|
8433
|
-
* @type {
|
|
8483
|
+
* @type {JsonApiDataSourceIdentifierOutMeta}
|
|
8434
8484
|
* @memberof JsonApiDataSourceOut
|
|
8435
8485
|
*/
|
|
8436
|
-
meta?:
|
|
8486
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
8437
8487
|
/**
|
|
8438
8488
|
*
|
|
8439
8489
|
* @type {JsonApiDataSourceOutAttributes}
|
|
@@ -8489,16 +8539,16 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
8489
8539
|
clientId?: string | null;
|
|
8490
8540
|
/**
|
|
8491
8541
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
8492
|
-
* @type {Array<
|
|
8542
|
+
* @type {Array<JsonApiDataSourceOutAttributesParameters>}
|
|
8493
8543
|
* @memberof JsonApiDataSourceOutAttributes
|
|
8494
8544
|
*/
|
|
8495
|
-
parameters?: Array<
|
|
8545
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
|
|
8496
8546
|
/**
|
|
8497
8547
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
8498
|
-
* @type {Array<
|
|
8548
|
+
* @type {Array<JsonApiDataSourceOutAttributesParameters>}
|
|
8499
8549
|
* @memberof JsonApiDataSourceOutAttributes
|
|
8500
8550
|
*/
|
|
8501
|
-
decodedParameters?: Array<
|
|
8551
|
+
decodedParameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
|
|
8502
8552
|
/**
|
|
8503
8553
|
* Determines how the results coming from a particular datasource should be cached.
|
|
8504
8554
|
* @type {string}
|
|
@@ -8532,10 +8582,11 @@ export declare const JsonApiDataSourceOutAttributesTypeEnum: {
|
|
|
8532
8582
|
readonly MYSQL: "MYSQL";
|
|
8533
8583
|
readonly MARIADB: "MARIADB";
|
|
8534
8584
|
readonly ORACLE: "ORACLE";
|
|
8535
|
-
readonly PINOT: "PINOT";
|
|
8536
8585
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8537
8586
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8538
8587
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
8588
|
+
readonly STARROCKS: "STARROCKS";
|
|
8589
|
+
readonly ATHENA: "ATHENA";
|
|
8539
8590
|
};
|
|
8540
8591
|
export type JsonApiDataSourceOutAttributesTypeEnum = typeof JsonApiDataSourceOutAttributesTypeEnum[keyof typeof JsonApiDataSourceOutAttributesTypeEnum];
|
|
8541
8592
|
export declare const JsonApiDataSourceOutAttributesCacheStrategyEnum: {
|
|
@@ -8551,6 +8602,25 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
|
|
|
8551
8602
|
readonly ACCESS_TOKEN: "ACCESS_TOKEN";
|
|
8552
8603
|
};
|
|
8553
8604
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
|
|
8605
|
+
/**
|
|
8606
|
+
*
|
|
8607
|
+
* @export
|
|
8608
|
+
* @interface JsonApiDataSourceOutAttributesParameters
|
|
8609
|
+
*/
|
|
8610
|
+
export interface JsonApiDataSourceOutAttributesParameters {
|
|
8611
|
+
/**
|
|
8612
|
+
*
|
|
8613
|
+
* @type {string}
|
|
8614
|
+
* @memberof JsonApiDataSourceOutAttributesParameters
|
|
8615
|
+
*/
|
|
8616
|
+
name: string;
|
|
8617
|
+
/**
|
|
8618
|
+
*
|
|
8619
|
+
* @type {string}
|
|
8620
|
+
* @memberof JsonApiDataSourceOutAttributesParameters
|
|
8621
|
+
*/
|
|
8622
|
+
value: string;
|
|
8623
|
+
}
|
|
8554
8624
|
/**
|
|
8555
8625
|
*
|
|
8556
8626
|
* @export
|
|
@@ -8590,29 +8660,11 @@ export interface JsonApiDataSourceOutList {
|
|
|
8590
8660
|
links?: ListLinks;
|
|
8591
8661
|
/**
|
|
8592
8662
|
*
|
|
8593
|
-
* @type {
|
|
8663
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
8594
8664
|
* @memberof JsonApiDataSourceOutList
|
|
8595
8665
|
*/
|
|
8596
|
-
meta?:
|
|
8597
|
-
}
|
|
8598
|
-
/**
|
|
8599
|
-
*
|
|
8600
|
-
* @export
|
|
8601
|
-
* @interface JsonApiDataSourceOutMeta
|
|
8602
|
-
*/
|
|
8603
|
-
export interface JsonApiDataSourceOutMeta {
|
|
8604
|
-
/**
|
|
8605
|
-
* List of valid permissions for a logged-in user.
|
|
8606
|
-
* @type {Array<string>}
|
|
8607
|
-
* @memberof JsonApiDataSourceOutMeta
|
|
8608
|
-
*/
|
|
8609
|
-
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
8666
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
8610
8667
|
}
|
|
8611
|
-
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
8612
|
-
readonly MANAGE: "MANAGE";
|
|
8613
|
-
readonly USE: "USE";
|
|
8614
|
-
};
|
|
8615
|
-
export type JsonApiDataSourceOutMetaPermissionsEnum = typeof JsonApiDataSourceOutMetaPermissionsEnum[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
8616
8668
|
/**
|
|
8617
8669
|
*
|
|
8618
8670
|
* @export
|
|
@@ -8633,10 +8685,10 @@ export interface JsonApiDataSourceOutWithLinks {
|
|
|
8633
8685
|
id: string;
|
|
8634
8686
|
/**
|
|
8635
8687
|
*
|
|
8636
|
-
* @type {
|
|
8688
|
+
* @type {JsonApiDataSourceIdentifierOutMeta}
|
|
8637
8689
|
* @memberof JsonApiDataSourceOutWithLinks
|
|
8638
8690
|
*/
|
|
8639
|
-
meta?:
|
|
8691
|
+
meta?: JsonApiDataSourceIdentifierOutMeta;
|
|
8640
8692
|
/**
|
|
8641
8693
|
*
|
|
8642
8694
|
* @type {JsonApiDataSourceOutAttributes}
|
|
@@ -8757,10 +8809,10 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
8757
8809
|
clientSecret?: string | null;
|
|
8758
8810
|
/**
|
|
8759
8811
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
8760
|
-
* @type {Array<
|
|
8812
|
+
* @type {Array<JsonApiDataSourceOutAttributesParameters>}
|
|
8761
8813
|
* @memberof JsonApiDataSourcePatchAttributes
|
|
8762
8814
|
*/
|
|
8763
|
-
parameters?: Array<
|
|
8815
|
+
parameters?: Array<JsonApiDataSourceOutAttributesParameters> | null;
|
|
8764
8816
|
/**
|
|
8765
8817
|
* Determines how the results coming from a particular datasource should be cached.
|
|
8766
8818
|
* @type {string}
|
|
@@ -8788,10 +8840,11 @@ export declare const JsonApiDataSourcePatchAttributesTypeEnum: {
|
|
|
8788
8840
|
readonly MYSQL: "MYSQL";
|
|
8789
8841
|
readonly MARIADB: "MARIADB";
|
|
8790
8842
|
readonly ORACLE: "ORACLE";
|
|
8791
|
-
readonly PINOT: "PINOT";
|
|
8792
8843
|
readonly SINGLESTORE: "SINGLESTORE";
|
|
8793
8844
|
readonly MOTHERDUCK: "MOTHERDUCK";
|
|
8794
8845
|
readonly FLEXCONNECT: "FLEXCONNECT";
|
|
8846
|
+
readonly STARROCKS: "STARROCKS";
|
|
8847
|
+
readonly ATHENA: "ATHENA";
|
|
8795
8848
|
};
|
|
8796
8849
|
export type JsonApiDataSourcePatchAttributesTypeEnum = typeof JsonApiDataSourcePatchAttributesTypeEnum[keyof typeof JsonApiDataSourcePatchAttributesTypeEnum];
|
|
8797
8850
|
export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
@@ -8799,25 +8852,6 @@ export declare const JsonApiDataSourcePatchAttributesCacheStrategyEnum: {
|
|
|
8799
8852
|
readonly NEVER: "NEVER";
|
|
8800
8853
|
};
|
|
8801
8854
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum[keyof typeof JsonApiDataSourcePatchAttributesCacheStrategyEnum];
|
|
8802
|
-
/**
|
|
8803
|
-
*
|
|
8804
|
-
* @export
|
|
8805
|
-
* @interface JsonApiDataSourcePatchAttributesParameters
|
|
8806
|
-
*/
|
|
8807
|
-
export interface JsonApiDataSourcePatchAttributesParameters {
|
|
8808
|
-
/**
|
|
8809
|
-
*
|
|
8810
|
-
* @type {string}
|
|
8811
|
-
* @memberof JsonApiDataSourcePatchAttributesParameters
|
|
8812
|
-
*/
|
|
8813
|
-
name: string;
|
|
8814
|
-
/**
|
|
8815
|
-
*
|
|
8816
|
-
* @type {string}
|
|
8817
|
-
* @memberof JsonApiDataSourcePatchAttributesParameters
|
|
8818
|
-
*/
|
|
8819
|
-
value: string;
|
|
8820
|
-
}
|
|
8821
8855
|
/**
|
|
8822
8856
|
*
|
|
8823
8857
|
* @export
|
|
@@ -9183,10 +9217,10 @@ export interface JsonApiDatasetOutList {
|
|
|
9183
9217
|
links?: ListLinks;
|
|
9184
9218
|
/**
|
|
9185
9219
|
*
|
|
9186
|
-
* @type {
|
|
9220
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9187
9221
|
* @memberof JsonApiDatasetOutList
|
|
9188
9222
|
*/
|
|
9189
|
-
meta?:
|
|
9223
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9190
9224
|
/**
|
|
9191
9225
|
* Included resources
|
|
9192
9226
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -9378,10 +9412,10 @@ export interface JsonApiEntitlementOutList {
|
|
|
9378
9412
|
links?: ListLinks;
|
|
9379
9413
|
/**
|
|
9380
9414
|
*
|
|
9381
|
-
* @type {
|
|
9415
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9382
9416
|
* @memberof JsonApiEntitlementOutList
|
|
9383
9417
|
*/
|
|
9384
|
-
meta?:
|
|
9418
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9385
9419
|
}
|
|
9386
9420
|
/**
|
|
9387
9421
|
*
|
|
@@ -9629,10 +9663,10 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
9629
9663
|
links?: ListLinks;
|
|
9630
9664
|
/**
|
|
9631
9665
|
*
|
|
9632
|
-
* @type {
|
|
9666
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
9633
9667
|
* @memberof JsonApiExportDefinitionOutList
|
|
9634
9668
|
*/
|
|
9635
|
-
meta?:
|
|
9669
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
9636
9670
|
/**
|
|
9637
9671
|
* Included resources
|
|
9638
9672
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -9654,10 +9688,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9654
9688
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9655
9689
|
/**
|
|
9656
9690
|
*
|
|
9657
|
-
* @type {
|
|
9691
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
9658
9692
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
9659
9693
|
*/
|
|
9660
|
-
analyticalDashboard?:
|
|
9694
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
9661
9695
|
/**
|
|
9662
9696
|
*
|
|
9663
9697
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -9677,19 +9711,6 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9677
9711
|
*/
|
|
9678
9712
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
9679
9713
|
}
|
|
9680
|
-
/**
|
|
9681
|
-
*
|
|
9682
|
-
* @export
|
|
9683
|
-
* @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9684
|
-
*/
|
|
9685
|
-
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
9686
|
-
/**
|
|
9687
|
-
*
|
|
9688
|
-
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
9689
|
-
* @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9690
|
-
*/
|
|
9691
|
-
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
9692
|
-
}
|
|
9693
9714
|
/**
|
|
9694
9715
|
*
|
|
9695
9716
|
* @export
|
|
@@ -9862,10 +9883,10 @@ export interface JsonApiExportDefinitionPatchRelationships {
|
|
|
9862
9883
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9863
9884
|
/**
|
|
9864
9885
|
*
|
|
9865
|
-
* @type {
|
|
9886
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
9866
9887
|
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
9867
9888
|
*/
|
|
9868
|
-
analyticalDashboard?:
|
|
9889
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
9869
9890
|
}
|
|
9870
9891
|
/**
|
|
9871
9892
|
* JSON:API representation of exportDefinition entity.
|
|
@@ -10000,60 +10021,126 @@ export interface JsonApiExportTemplateOutAttributes {
|
|
|
10000
10021
|
name: string;
|
|
10001
10022
|
/**
|
|
10002
10023
|
*
|
|
10003
|
-
* @type {
|
|
10024
|
+
* @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
|
|
10004
10025
|
* @memberof JsonApiExportTemplateOutAttributes
|
|
10005
10026
|
*/
|
|
10006
|
-
dashboardSlidesTemplate?:
|
|
10027
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
10007
10028
|
/**
|
|
10008
10029
|
*
|
|
10009
|
-
* @type {
|
|
10030
|
+
* @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
|
|
10010
10031
|
* @memberof JsonApiExportTemplateOutAttributes
|
|
10011
10032
|
*/
|
|
10012
|
-
widgetSlidesTemplate?:
|
|
10033
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
10013
10034
|
}
|
|
10014
10035
|
/**
|
|
10015
|
-
*
|
|
10036
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
10016
10037
|
* @export
|
|
10017
|
-
* @interface
|
|
10038
|
+
* @interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10018
10039
|
*/
|
|
10019
|
-
export interface
|
|
10040
|
+
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
10020
10041
|
/**
|
|
10021
|
-
*
|
|
10022
|
-
* @type {
|
|
10023
|
-
* @memberof
|
|
10042
|
+
* Export types this template applies to.
|
|
10043
|
+
* @type {Array<string>}
|
|
10044
|
+
* @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10024
10045
|
*/
|
|
10025
|
-
|
|
10046
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
10026
10047
|
/**
|
|
10027
10048
|
*
|
|
10028
|
-
* @type {
|
|
10029
|
-
* @memberof
|
|
10049
|
+
* @type {CoverSlideTemplate}
|
|
10050
|
+
* @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10030
10051
|
*/
|
|
10031
|
-
|
|
10032
|
-
}
|
|
10033
|
-
/**
|
|
10034
|
-
* A JSON:API document with a list of resources
|
|
10035
|
-
* @export
|
|
10036
|
-
* @interface JsonApiExportTemplateOutList
|
|
10037
|
-
*/
|
|
10038
|
-
export interface JsonApiExportTemplateOutList {
|
|
10052
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
10039
10053
|
/**
|
|
10040
10054
|
*
|
|
10041
|
-
* @type {
|
|
10042
|
-
* @memberof
|
|
10055
|
+
* @type {IntroSlideTemplate}
|
|
10056
|
+
* @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10043
10057
|
*/
|
|
10044
|
-
|
|
10058
|
+
introSlide?: IntroSlideTemplate | null;
|
|
10045
10059
|
/**
|
|
10046
10060
|
*
|
|
10047
|
-
* @type {
|
|
10061
|
+
* @type {SectionSlideTemplate}
|
|
10062
|
+
* @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10063
|
+
*/
|
|
10064
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
10065
|
+
/**
|
|
10066
|
+
*
|
|
10067
|
+
* @type {ContentSlideTemplate}
|
|
10068
|
+
* @memberof JsonApiExportTemplateOutAttributesDashboardSlidesTemplate
|
|
10069
|
+
*/
|
|
10070
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
10071
|
+
}
|
|
10072
|
+
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
10073
|
+
readonly PDF: "PDF";
|
|
10074
|
+
readonly PPTX: "PPTX";
|
|
10075
|
+
};
|
|
10076
|
+
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
10077
|
+
/**
|
|
10078
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
10079
|
+
* @export
|
|
10080
|
+
* @interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
|
|
10081
|
+
*/
|
|
10082
|
+
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
10083
|
+
/**
|
|
10084
|
+
* Export types this template applies to.
|
|
10085
|
+
* @type {Array<string>}
|
|
10086
|
+
* @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
|
|
10087
|
+
*/
|
|
10088
|
+
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
10089
|
+
/**
|
|
10090
|
+
*
|
|
10091
|
+
* @type {ContentSlideTemplate}
|
|
10092
|
+
* @memberof JsonApiExportTemplateOutAttributesWidgetSlidesTemplate
|
|
10093
|
+
*/
|
|
10094
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
10095
|
+
}
|
|
10096
|
+
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
10097
|
+
readonly PDF: "PDF";
|
|
10098
|
+
readonly PPTX: "PPTX";
|
|
10099
|
+
};
|
|
10100
|
+
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
10101
|
+
/**
|
|
10102
|
+
*
|
|
10103
|
+
* @export
|
|
10104
|
+
* @interface JsonApiExportTemplateOutDocument
|
|
10105
|
+
*/
|
|
10106
|
+
export interface JsonApiExportTemplateOutDocument {
|
|
10107
|
+
/**
|
|
10108
|
+
*
|
|
10109
|
+
* @type {JsonApiExportTemplateOut}
|
|
10110
|
+
* @memberof JsonApiExportTemplateOutDocument
|
|
10111
|
+
*/
|
|
10112
|
+
data: JsonApiExportTemplateOut;
|
|
10113
|
+
/**
|
|
10114
|
+
*
|
|
10115
|
+
* @type {ObjectLinks}
|
|
10116
|
+
* @memberof JsonApiExportTemplateOutDocument
|
|
10117
|
+
*/
|
|
10118
|
+
links?: ObjectLinks;
|
|
10119
|
+
}
|
|
10120
|
+
/**
|
|
10121
|
+
* A JSON:API document with a list of resources
|
|
10122
|
+
* @export
|
|
10123
|
+
* @interface JsonApiExportTemplateOutList
|
|
10124
|
+
*/
|
|
10125
|
+
export interface JsonApiExportTemplateOutList {
|
|
10126
|
+
/**
|
|
10127
|
+
*
|
|
10128
|
+
* @type {Array<JsonApiExportTemplateOutWithLinks>}
|
|
10129
|
+
* @memberof JsonApiExportTemplateOutList
|
|
10130
|
+
*/
|
|
10131
|
+
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
10132
|
+
/**
|
|
10133
|
+
*
|
|
10134
|
+
* @type {ListLinks}
|
|
10048
10135
|
* @memberof JsonApiExportTemplateOutList
|
|
10049
10136
|
*/
|
|
10050
10137
|
links?: ListLinks;
|
|
10051
10138
|
/**
|
|
10052
10139
|
*
|
|
10053
|
-
* @type {
|
|
10140
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10054
10141
|
* @memberof JsonApiExportTemplateOutList
|
|
10055
10142
|
*/
|
|
10056
|
-
meta?:
|
|
10143
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10057
10144
|
}
|
|
10058
10145
|
/**
|
|
10059
10146
|
*
|
|
@@ -10133,83 +10220,17 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
10133
10220
|
name?: string;
|
|
10134
10221
|
/**
|
|
10135
10222
|
*
|
|
10136
|
-
* @type {
|
|
10223
|
+
* @type {JsonApiExportTemplateOutAttributesDashboardSlidesTemplate}
|
|
10137
10224
|
* @memberof JsonApiExportTemplatePatchAttributes
|
|
10138
10225
|
*/
|
|
10139
|
-
dashboardSlidesTemplate?:
|
|
10226
|
+
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
10140
10227
|
/**
|
|
10141
10228
|
*
|
|
10142
|
-
* @type {
|
|
10229
|
+
* @type {JsonApiExportTemplateOutAttributesWidgetSlidesTemplate}
|
|
10143
10230
|
* @memberof JsonApiExportTemplatePatchAttributes
|
|
10144
10231
|
*/
|
|
10145
|
-
widgetSlidesTemplate?:
|
|
10146
|
-
}
|
|
10147
|
-
/**
|
|
10148
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
10149
|
-
* @export
|
|
10150
|
-
* @interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10151
|
-
*/
|
|
10152
|
-
export interface JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate {
|
|
10153
|
-
/**
|
|
10154
|
-
* Export types this template applies to.
|
|
10155
|
-
* @type {Array<string>}
|
|
10156
|
-
* @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10157
|
-
*/
|
|
10158
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
10159
|
-
/**
|
|
10160
|
-
*
|
|
10161
|
-
* @type {CoverSlideTemplate}
|
|
10162
|
-
* @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10163
|
-
*/
|
|
10164
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
10165
|
-
/**
|
|
10166
|
-
*
|
|
10167
|
-
* @type {IntroSlideTemplate}
|
|
10168
|
-
* @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10169
|
-
*/
|
|
10170
|
-
introSlide?: IntroSlideTemplate | null;
|
|
10171
|
-
/**
|
|
10172
|
-
*
|
|
10173
|
-
* @type {SectionSlideTemplate}
|
|
10174
|
-
* @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10175
|
-
*/
|
|
10176
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
10177
|
-
/**
|
|
10178
|
-
*
|
|
10179
|
-
* @type {ContentSlideTemplate}
|
|
10180
|
-
* @memberof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplate
|
|
10181
|
-
*/
|
|
10182
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
10183
|
-
}
|
|
10184
|
-
export declare const JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
10185
|
-
readonly PDF: "PDF";
|
|
10186
|
-
readonly PPTX: "PPTX";
|
|
10187
|
-
};
|
|
10188
|
-
export type JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
10189
|
-
/**
|
|
10190
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
10191
|
-
* @export
|
|
10192
|
-
* @interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
|
|
10193
|
-
*/
|
|
10194
|
-
export interface JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate {
|
|
10195
|
-
/**
|
|
10196
|
-
* Export types this template applies to.
|
|
10197
|
-
* @type {Array<string>}
|
|
10198
|
-
* @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
|
|
10199
|
-
*/
|
|
10200
|
-
appliedOn: Array<JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
10201
|
-
/**
|
|
10202
|
-
*
|
|
10203
|
-
* @type {ContentSlideTemplate}
|
|
10204
|
-
* @memberof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplate
|
|
10205
|
-
*/
|
|
10206
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
10232
|
+
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
10207
10233
|
}
|
|
10208
|
-
export declare const JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
10209
|
-
readonly PDF: "PDF";
|
|
10210
|
-
readonly PPTX: "PPTX";
|
|
10211
|
-
};
|
|
10212
|
-
export type JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum = typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum[keyof typeof JsonApiExportTemplatePatchAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
10213
10234
|
/**
|
|
10214
10235
|
*
|
|
10215
10236
|
* @export
|
|
@@ -10427,10 +10448,10 @@ export interface JsonApiFactOutList {
|
|
|
10427
10448
|
links?: ListLinks;
|
|
10428
10449
|
/**
|
|
10429
10450
|
*
|
|
10430
|
-
* @type {
|
|
10451
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10431
10452
|
* @memberof JsonApiFactOutList
|
|
10432
10453
|
*/
|
|
10433
|
-
meta?:
|
|
10454
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10434
10455
|
/**
|
|
10435
10456
|
* Included resources
|
|
10436
10457
|
* @type {Array<JsonApiDatasetOutWithLinks>}
|
|
@@ -10691,10 +10712,10 @@ export interface JsonApiFilterContextOutList {
|
|
|
10691
10712
|
links?: ListLinks;
|
|
10692
10713
|
/**
|
|
10693
10714
|
*
|
|
10694
|
-
* @type {
|
|
10715
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
10695
10716
|
* @memberof JsonApiFilterContextOutList
|
|
10696
10717
|
*/
|
|
10697
|
-
meta?:
|
|
10718
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
10698
10719
|
/**
|
|
10699
10720
|
* Included resources
|
|
10700
10721
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -10884,10 +10905,10 @@ export interface JsonApiFilterViewIn {
|
|
|
10884
10905
|
attributes: JsonApiFilterViewOutAttributes;
|
|
10885
10906
|
/**
|
|
10886
10907
|
*
|
|
10887
|
-
* @type {
|
|
10908
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
10888
10909
|
* @memberof JsonApiFilterViewIn
|
|
10889
10910
|
*/
|
|
10890
|
-
relationships?:
|
|
10911
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
10891
10912
|
}
|
|
10892
10913
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
10893
10914
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -10932,10 +10953,10 @@ export interface JsonApiFilterViewOut {
|
|
|
10932
10953
|
attributes: JsonApiFilterViewOutAttributes;
|
|
10933
10954
|
/**
|
|
10934
10955
|
*
|
|
10935
|
-
* @type {
|
|
10956
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
10936
10957
|
* @memberof JsonApiFilterViewOut
|
|
10937
10958
|
*/
|
|
10938
|
-
relationships?:
|
|
10959
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
10939
10960
|
}
|
|
10940
10961
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
10941
10962
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11034,10 +11055,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
11034
11055
|
links?: ListLinks;
|
|
11035
11056
|
/**
|
|
11036
11057
|
*
|
|
11037
|
-
* @type {
|
|
11058
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11038
11059
|
* @memberof JsonApiFilterViewOutList
|
|
11039
11060
|
*/
|
|
11040
|
-
meta?:
|
|
11061
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11041
11062
|
/**
|
|
11042
11063
|
* Included resources
|
|
11043
11064
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -11045,38 +11066,6 @@ export interface JsonApiFilterViewOutList {
|
|
|
11045
11066
|
*/
|
|
11046
11067
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11047
11068
|
}
|
|
11048
|
-
/**
|
|
11049
|
-
*
|
|
11050
|
-
* @export
|
|
11051
|
-
* @interface JsonApiFilterViewOutRelationships
|
|
11052
|
-
*/
|
|
11053
|
-
export interface JsonApiFilterViewOutRelationships {
|
|
11054
|
-
/**
|
|
11055
|
-
*
|
|
11056
|
-
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
11057
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11058
|
-
*/
|
|
11059
|
-
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
11060
|
-
/**
|
|
11061
|
-
*
|
|
11062
|
-
* @type {JsonApiFilterViewOutRelationshipsUser}
|
|
11063
|
-
* @memberof JsonApiFilterViewOutRelationships
|
|
11064
|
-
*/
|
|
11065
|
-
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
11066
|
-
}
|
|
11067
|
-
/**
|
|
11068
|
-
*
|
|
11069
|
-
* @export
|
|
11070
|
-
* @interface JsonApiFilterViewOutRelationshipsUser
|
|
11071
|
-
*/
|
|
11072
|
-
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
11073
|
-
/**
|
|
11074
|
-
*
|
|
11075
|
-
* @type {JsonApiUserToOneLinkage}
|
|
11076
|
-
* @memberof JsonApiFilterViewOutRelationshipsUser
|
|
11077
|
-
*/
|
|
11078
|
-
data: JsonApiUserToOneLinkage | null;
|
|
11079
|
-
}
|
|
11080
11069
|
/**
|
|
11081
11070
|
*
|
|
11082
11071
|
* @export
|
|
@@ -11103,10 +11092,10 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11103
11092
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11104
11093
|
/**
|
|
11105
11094
|
*
|
|
11106
|
-
* @type {
|
|
11095
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11107
11096
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11108
11097
|
*/
|
|
11109
|
-
relationships?:
|
|
11098
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11110
11099
|
/**
|
|
11111
11100
|
*
|
|
11112
11101
|
* @type {ObjectLinks}
|
|
@@ -11144,10 +11133,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11144
11133
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11145
11134
|
/**
|
|
11146
11135
|
*
|
|
11147
|
-
* @type {
|
|
11136
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
11148
11137
|
* @memberof JsonApiFilterViewPatch
|
|
11149
11138
|
*/
|
|
11150
|
-
relationships?:
|
|
11139
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
11151
11140
|
}
|
|
11152
11141
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11153
11142
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11209,6 +11198,38 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
11209
11198
|
*/
|
|
11210
11199
|
data: JsonApiFilterViewPatch;
|
|
11211
11200
|
}
|
|
11201
|
+
/**
|
|
11202
|
+
*
|
|
11203
|
+
* @export
|
|
11204
|
+
* @interface JsonApiFilterViewPatchRelationships
|
|
11205
|
+
*/
|
|
11206
|
+
export interface JsonApiFilterViewPatchRelationships {
|
|
11207
|
+
/**
|
|
11208
|
+
*
|
|
11209
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
11210
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
11211
|
+
*/
|
|
11212
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
11213
|
+
/**
|
|
11214
|
+
*
|
|
11215
|
+
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
11216
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
11217
|
+
*/
|
|
11218
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
11219
|
+
}
|
|
11220
|
+
/**
|
|
11221
|
+
*
|
|
11222
|
+
* @export
|
|
11223
|
+
* @interface JsonApiFilterViewPatchRelationshipsUser
|
|
11224
|
+
*/
|
|
11225
|
+
export interface JsonApiFilterViewPatchRelationshipsUser {
|
|
11226
|
+
/**
|
|
11227
|
+
*
|
|
11228
|
+
* @type {JsonApiUserToOneLinkage}
|
|
11229
|
+
* @memberof JsonApiFilterViewPatchRelationshipsUser
|
|
11230
|
+
*/
|
|
11231
|
+
data: JsonApiUserToOneLinkage | null;
|
|
11232
|
+
}
|
|
11212
11233
|
/**
|
|
11213
11234
|
* JSON:API representation of identityProvider entity.
|
|
11214
11235
|
* @export
|
|
@@ -11397,10 +11418,10 @@ export interface JsonApiIdentityProviderOutList {
|
|
|
11397
11418
|
links?: ListLinks;
|
|
11398
11419
|
/**
|
|
11399
11420
|
*
|
|
11400
|
-
* @type {
|
|
11421
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11401
11422
|
* @memberof JsonApiIdentityProviderOutList
|
|
11402
11423
|
*/
|
|
11403
|
-
meta?:
|
|
11424
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11404
11425
|
}
|
|
11405
11426
|
/**
|
|
11406
11427
|
*
|
|
@@ -11544,10 +11565,10 @@ export interface JsonApiJwkIn {
|
|
|
11544
11565
|
id: string;
|
|
11545
11566
|
/**
|
|
11546
11567
|
*
|
|
11547
|
-
* @type {
|
|
11568
|
+
* @type {JsonApiJwkOutAttributes}
|
|
11548
11569
|
* @memberof JsonApiJwkIn
|
|
11549
11570
|
*/
|
|
11550
|
-
attributes?:
|
|
11571
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
11551
11572
|
}
|
|
11552
11573
|
export declare const JsonApiJwkInTypeEnum: {
|
|
11553
11574
|
readonly JWK: "jwk";
|
|
@@ -11586,15 +11607,28 @@ export interface JsonApiJwkOut {
|
|
|
11586
11607
|
id: string;
|
|
11587
11608
|
/**
|
|
11588
11609
|
*
|
|
11589
|
-
* @type {
|
|
11610
|
+
* @type {JsonApiJwkOutAttributes}
|
|
11590
11611
|
* @memberof JsonApiJwkOut
|
|
11591
11612
|
*/
|
|
11592
|
-
attributes?:
|
|
11613
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
11593
11614
|
}
|
|
11594
11615
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
11595
11616
|
readonly JWK: "jwk";
|
|
11596
11617
|
};
|
|
11597
11618
|
export type JsonApiJwkOutTypeEnum = typeof JsonApiJwkOutTypeEnum[keyof typeof JsonApiJwkOutTypeEnum];
|
|
11619
|
+
/**
|
|
11620
|
+
*
|
|
11621
|
+
* @export
|
|
11622
|
+
* @interface JsonApiJwkOutAttributes
|
|
11623
|
+
*/
|
|
11624
|
+
export interface JsonApiJwkOutAttributes {
|
|
11625
|
+
/**
|
|
11626
|
+
* Specification of the cryptographic key
|
|
11627
|
+
* @type {RsaSpecification}
|
|
11628
|
+
* @memberof JsonApiJwkOutAttributes
|
|
11629
|
+
*/
|
|
11630
|
+
content?: RsaSpecification;
|
|
11631
|
+
}
|
|
11598
11632
|
/**
|
|
11599
11633
|
*
|
|
11600
11634
|
* @export
|
|
@@ -11634,10 +11668,10 @@ export interface JsonApiJwkOutList {
|
|
|
11634
11668
|
links?: ListLinks;
|
|
11635
11669
|
/**
|
|
11636
11670
|
*
|
|
11637
|
-
* @type {
|
|
11671
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11638
11672
|
* @memberof JsonApiJwkOutList
|
|
11639
11673
|
*/
|
|
11640
|
-
meta?:
|
|
11674
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11641
11675
|
}
|
|
11642
11676
|
/**
|
|
11643
11677
|
*
|
|
@@ -11659,10 +11693,10 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
11659
11693
|
id: string;
|
|
11660
11694
|
/**
|
|
11661
11695
|
*
|
|
11662
|
-
* @type {
|
|
11696
|
+
* @type {JsonApiJwkOutAttributes}
|
|
11663
11697
|
* @memberof JsonApiJwkOutWithLinks
|
|
11664
11698
|
*/
|
|
11665
|
-
attributes?:
|
|
11699
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
11666
11700
|
/**
|
|
11667
11701
|
*
|
|
11668
11702
|
* @type {ObjectLinks}
|
|
@@ -11694,28 +11728,15 @@ export interface JsonApiJwkPatch {
|
|
|
11694
11728
|
id: string;
|
|
11695
11729
|
/**
|
|
11696
11730
|
*
|
|
11697
|
-
* @type {
|
|
11731
|
+
* @type {JsonApiJwkOutAttributes}
|
|
11698
11732
|
* @memberof JsonApiJwkPatch
|
|
11699
11733
|
*/
|
|
11700
|
-
attributes?:
|
|
11734
|
+
attributes?: JsonApiJwkOutAttributes;
|
|
11701
11735
|
}
|
|
11702
11736
|
export declare const JsonApiJwkPatchTypeEnum: {
|
|
11703
11737
|
readonly JWK: "jwk";
|
|
11704
11738
|
};
|
|
11705
11739
|
export type JsonApiJwkPatchTypeEnum = typeof JsonApiJwkPatchTypeEnum[keyof typeof JsonApiJwkPatchTypeEnum];
|
|
11706
|
-
/**
|
|
11707
|
-
*
|
|
11708
|
-
* @export
|
|
11709
|
-
* @interface JsonApiJwkPatchAttributes
|
|
11710
|
-
*/
|
|
11711
|
-
export interface JsonApiJwkPatchAttributes {
|
|
11712
|
-
/**
|
|
11713
|
-
* Specification of the cryptographic key
|
|
11714
|
-
* @type {RsaSpecification}
|
|
11715
|
-
* @memberof JsonApiJwkPatchAttributes
|
|
11716
|
-
*/
|
|
11717
|
-
content?: RsaSpecification;
|
|
11718
|
-
}
|
|
11719
11740
|
/**
|
|
11720
11741
|
*
|
|
11721
11742
|
* @export
|
|
@@ -11912,10 +11933,10 @@ export interface JsonApiLabelOutList {
|
|
|
11912
11933
|
links?: ListLinks;
|
|
11913
11934
|
/**
|
|
11914
11935
|
*
|
|
11915
|
-
* @type {
|
|
11936
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
11916
11937
|
* @memberof JsonApiLabelOutList
|
|
11917
11938
|
*/
|
|
11918
|
-
meta?:
|
|
11939
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
11919
11940
|
/**
|
|
11920
11941
|
* Included resources
|
|
11921
11942
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -12224,10 +12245,10 @@ export interface JsonApiLlmEndpointOutList {
|
|
|
12224
12245
|
links?: ListLinks;
|
|
12225
12246
|
/**
|
|
12226
12247
|
*
|
|
12227
|
-
* @type {
|
|
12248
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12228
12249
|
* @memberof JsonApiLlmEndpointOutList
|
|
12229
12250
|
*/
|
|
12230
|
-
meta?:
|
|
12251
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12231
12252
|
}
|
|
12232
12253
|
/**
|
|
12233
12254
|
*
|
|
@@ -12385,52 +12406,15 @@ export interface JsonApiMetricIn {
|
|
|
12385
12406
|
id: string;
|
|
12386
12407
|
/**
|
|
12387
12408
|
*
|
|
12388
|
-
* @type {
|
|
12409
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
12389
12410
|
* @memberof JsonApiMetricIn
|
|
12390
12411
|
*/
|
|
12391
|
-
attributes:
|
|
12412
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
12392
12413
|
}
|
|
12393
12414
|
export declare const JsonApiMetricInTypeEnum: {
|
|
12394
12415
|
readonly METRIC: "metric";
|
|
12395
12416
|
};
|
|
12396
12417
|
export type JsonApiMetricInTypeEnum = typeof JsonApiMetricInTypeEnum[keyof typeof JsonApiMetricInTypeEnum];
|
|
12397
|
-
/**
|
|
12398
|
-
*
|
|
12399
|
-
* @export
|
|
12400
|
-
* @interface JsonApiMetricInAttributes
|
|
12401
|
-
*/
|
|
12402
|
-
export interface JsonApiMetricInAttributes {
|
|
12403
|
-
/**
|
|
12404
|
-
*
|
|
12405
|
-
* @type {string}
|
|
12406
|
-
* @memberof JsonApiMetricInAttributes
|
|
12407
|
-
*/
|
|
12408
|
-
title?: string;
|
|
12409
|
-
/**
|
|
12410
|
-
*
|
|
12411
|
-
* @type {string}
|
|
12412
|
-
* @memberof JsonApiMetricInAttributes
|
|
12413
|
-
*/
|
|
12414
|
-
description?: string;
|
|
12415
|
-
/**
|
|
12416
|
-
*
|
|
12417
|
-
* @type {Array<string>}
|
|
12418
|
-
* @memberof JsonApiMetricInAttributes
|
|
12419
|
-
*/
|
|
12420
|
-
tags?: Array<string>;
|
|
12421
|
-
/**
|
|
12422
|
-
*
|
|
12423
|
-
* @type {boolean}
|
|
12424
|
-
* @memberof JsonApiMetricInAttributes
|
|
12425
|
-
*/
|
|
12426
|
-
areRelationsValid?: boolean;
|
|
12427
|
-
/**
|
|
12428
|
-
*
|
|
12429
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
12430
|
-
* @memberof JsonApiMetricInAttributes
|
|
12431
|
-
*/
|
|
12432
|
-
content: JsonApiMetricOutAttributesContent;
|
|
12433
|
-
}
|
|
12434
12418
|
/**
|
|
12435
12419
|
*
|
|
12436
12420
|
* @export
|
|
@@ -12626,10 +12610,10 @@ export interface JsonApiMetricOutList {
|
|
|
12626
12610
|
links?: ListLinks;
|
|
12627
12611
|
/**
|
|
12628
12612
|
*
|
|
12629
|
-
* @type {
|
|
12613
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
12630
12614
|
* @memberof JsonApiMetricOutList
|
|
12631
12615
|
*/
|
|
12632
|
-
meta?:
|
|
12616
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
12633
12617
|
/**
|
|
12634
12618
|
* Included resources
|
|
12635
12619
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -12783,15 +12767,52 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
12783
12767
|
id?: string;
|
|
12784
12768
|
/**
|
|
12785
12769
|
*
|
|
12786
|
-
* @type {
|
|
12770
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
12787
12771
|
* @memberof JsonApiMetricPostOptionalId
|
|
12788
12772
|
*/
|
|
12789
|
-
attributes:
|
|
12773
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
12790
12774
|
}
|
|
12791
12775
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
12792
12776
|
readonly METRIC: "metric";
|
|
12793
12777
|
};
|
|
12794
12778
|
export type JsonApiMetricPostOptionalIdTypeEnum = typeof JsonApiMetricPostOptionalIdTypeEnum[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
12779
|
+
/**
|
|
12780
|
+
*
|
|
12781
|
+
* @export
|
|
12782
|
+
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
12783
|
+
*/
|
|
12784
|
+
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
12785
|
+
/**
|
|
12786
|
+
*
|
|
12787
|
+
* @type {string}
|
|
12788
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12789
|
+
*/
|
|
12790
|
+
title?: string;
|
|
12791
|
+
/**
|
|
12792
|
+
*
|
|
12793
|
+
* @type {string}
|
|
12794
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12795
|
+
*/
|
|
12796
|
+
description?: string;
|
|
12797
|
+
/**
|
|
12798
|
+
*
|
|
12799
|
+
* @type {Array<string>}
|
|
12800
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12801
|
+
*/
|
|
12802
|
+
tags?: Array<string>;
|
|
12803
|
+
/**
|
|
12804
|
+
*
|
|
12805
|
+
* @type {boolean}
|
|
12806
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12807
|
+
*/
|
|
12808
|
+
areRelationsValid?: boolean;
|
|
12809
|
+
/**
|
|
12810
|
+
*
|
|
12811
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
12812
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
12813
|
+
*/
|
|
12814
|
+
content: JsonApiMetricOutAttributesContent;
|
|
12815
|
+
}
|
|
12795
12816
|
/**
|
|
12796
12817
|
*
|
|
12797
12818
|
* @export
|
|
@@ -12825,10 +12846,10 @@ export interface JsonApiNotificationChannelIn {
|
|
|
12825
12846
|
id: string;
|
|
12826
12847
|
/**
|
|
12827
12848
|
*
|
|
12828
|
-
* @type {
|
|
12849
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
12829
12850
|
* @memberof JsonApiNotificationChannelIn
|
|
12830
12851
|
*/
|
|
12831
|
-
attributes?:
|
|
12852
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
12832
12853
|
}
|
|
12833
12854
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
12834
12855
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -12837,32 +12858,98 @@ export type JsonApiNotificationChannelInTypeEnum = typeof JsonApiNotificationCha
|
|
|
12837
12858
|
/**
|
|
12838
12859
|
*
|
|
12839
12860
|
* @export
|
|
12840
|
-
* @interface
|
|
12861
|
+
* @interface JsonApiNotificationChannelInAttributes
|
|
12841
12862
|
*/
|
|
12842
|
-
export interface
|
|
12863
|
+
export interface JsonApiNotificationChannelInAttributes {
|
|
12843
12864
|
/**
|
|
12844
12865
|
*
|
|
12845
|
-
* @type {
|
|
12846
|
-
* @memberof
|
|
12866
|
+
* @type {string}
|
|
12867
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12847
12868
|
*/
|
|
12848
|
-
|
|
12849
|
-
}
|
|
12850
|
-
/**
|
|
12851
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
12852
|
-
* @export
|
|
12853
|
-
* @interface JsonApiNotificationChannelLinkage
|
|
12854
|
-
*/
|
|
12855
|
-
export interface JsonApiNotificationChannelLinkage {
|
|
12869
|
+
name?: string | null;
|
|
12856
12870
|
/**
|
|
12857
12871
|
*
|
|
12858
12872
|
* @type {string}
|
|
12859
|
-
* @memberof
|
|
12873
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12860
12874
|
*/
|
|
12861
|
-
|
|
12875
|
+
description?: string | null;
|
|
12862
12876
|
/**
|
|
12863
|
-
*
|
|
12864
|
-
* @type {
|
|
12865
|
-
* @memberof
|
|
12877
|
+
* The destination where the notifications are to be sent.
|
|
12878
|
+
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
12879
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12880
|
+
*/
|
|
12881
|
+
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
12882
|
+
/**
|
|
12883
|
+
* 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}.
|
|
12884
|
+
* @type {string}
|
|
12885
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12886
|
+
*/
|
|
12887
|
+
customDashboardUrl?: string;
|
|
12888
|
+
/**
|
|
12889
|
+
* 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
|
|
12890
|
+
* @type {string}
|
|
12891
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12892
|
+
*/
|
|
12893
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
12894
|
+
/**
|
|
12895
|
+
* 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
|
|
12896
|
+
* @type {string}
|
|
12897
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12898
|
+
*/
|
|
12899
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
12900
|
+
/**
|
|
12901
|
+
* 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
|
|
12902
|
+
* @type {string}
|
|
12903
|
+
* @memberof JsonApiNotificationChannelInAttributes
|
|
12904
|
+
*/
|
|
12905
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
12906
|
+
}
|
|
12907
|
+
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
12908
|
+
readonly HIDDEN: "HIDDEN";
|
|
12909
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
12910
|
+
readonly ALL: "ALL";
|
|
12911
|
+
};
|
|
12912
|
+
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
12913
|
+
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
12914
|
+
readonly CREATOR: "CREATOR";
|
|
12915
|
+
readonly INTERNAL: "INTERNAL";
|
|
12916
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
12917
|
+
};
|
|
12918
|
+
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
12919
|
+
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
12920
|
+
readonly DISABLED: "DISABLED";
|
|
12921
|
+
readonly ENABLED: "ENABLED";
|
|
12922
|
+
};
|
|
12923
|
+
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
12924
|
+
/**
|
|
12925
|
+
*
|
|
12926
|
+
* @export
|
|
12927
|
+
* @interface JsonApiNotificationChannelInDocument
|
|
12928
|
+
*/
|
|
12929
|
+
export interface JsonApiNotificationChannelInDocument {
|
|
12930
|
+
/**
|
|
12931
|
+
*
|
|
12932
|
+
* @type {JsonApiNotificationChannelIn}
|
|
12933
|
+
* @memberof JsonApiNotificationChannelInDocument
|
|
12934
|
+
*/
|
|
12935
|
+
data: JsonApiNotificationChannelIn;
|
|
12936
|
+
}
|
|
12937
|
+
/**
|
|
12938
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
12939
|
+
* @export
|
|
12940
|
+
* @interface JsonApiNotificationChannelLinkage
|
|
12941
|
+
*/
|
|
12942
|
+
export interface JsonApiNotificationChannelLinkage {
|
|
12943
|
+
/**
|
|
12944
|
+
*
|
|
12945
|
+
* @type {string}
|
|
12946
|
+
* @memberof JsonApiNotificationChannelLinkage
|
|
12947
|
+
*/
|
|
12948
|
+
id: string;
|
|
12949
|
+
/**
|
|
12950
|
+
*
|
|
12951
|
+
* @type {string}
|
|
12952
|
+
* @memberof JsonApiNotificationChannelLinkage
|
|
12866
12953
|
*/
|
|
12867
12954
|
type: JsonApiNotificationChannelLinkageTypeEnum;
|
|
12868
12955
|
}
|
|
@@ -13017,10 +13104,10 @@ export interface JsonApiNotificationChannelOutList {
|
|
|
13017
13104
|
links?: ListLinks;
|
|
13018
13105
|
/**
|
|
13019
13106
|
*
|
|
13020
|
-
* @type {
|
|
13107
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13021
13108
|
* @memberof JsonApiNotificationChannelOutList
|
|
13022
13109
|
*/
|
|
13023
|
-
meta?:
|
|
13110
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13024
13111
|
}
|
|
13025
13112
|
/**
|
|
13026
13113
|
*
|
|
@@ -13077,81 +13164,15 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
13077
13164
|
id: string;
|
|
13078
13165
|
/**
|
|
13079
13166
|
*
|
|
13080
|
-
* @type {
|
|
13167
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
13081
13168
|
* @memberof JsonApiNotificationChannelPatch
|
|
13082
13169
|
*/
|
|
13083
|
-
attributes?:
|
|
13170
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
13084
13171
|
}
|
|
13085
13172
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
13086
13173
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
13087
13174
|
};
|
|
13088
13175
|
export type JsonApiNotificationChannelPatchTypeEnum = typeof JsonApiNotificationChannelPatchTypeEnum[keyof typeof JsonApiNotificationChannelPatchTypeEnum];
|
|
13089
|
-
/**
|
|
13090
|
-
*
|
|
13091
|
-
* @export
|
|
13092
|
-
* @interface JsonApiNotificationChannelPatchAttributes
|
|
13093
|
-
*/
|
|
13094
|
-
export interface JsonApiNotificationChannelPatchAttributes {
|
|
13095
|
-
/**
|
|
13096
|
-
*
|
|
13097
|
-
* @type {string}
|
|
13098
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13099
|
-
*/
|
|
13100
|
-
name?: string | null;
|
|
13101
|
-
/**
|
|
13102
|
-
*
|
|
13103
|
-
* @type {string}
|
|
13104
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13105
|
-
*/
|
|
13106
|
-
description?: string | null;
|
|
13107
|
-
/**
|
|
13108
|
-
* The destination where the notifications are to be sent.
|
|
13109
|
-
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
13110
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13111
|
-
*/
|
|
13112
|
-
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
13113
|
-
/**
|
|
13114
|
-
* 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}.
|
|
13115
|
-
* @type {string}
|
|
13116
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13117
|
-
*/
|
|
13118
|
-
customDashboardUrl?: string;
|
|
13119
|
-
/**
|
|
13120
|
-
* 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
|
|
13121
|
-
* @type {string}
|
|
13122
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13123
|
-
*/
|
|
13124
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
13125
|
-
/**
|
|
13126
|
-
* 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
|
|
13127
|
-
* @type {string}
|
|
13128
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13129
|
-
*/
|
|
13130
|
-
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
13131
|
-
/**
|
|
13132
|
-
* 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
|
|
13133
|
-
* @type {string}
|
|
13134
|
-
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
13135
|
-
*/
|
|
13136
|
-
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
13137
|
-
}
|
|
13138
|
-
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
13139
|
-
readonly HIDDEN: "HIDDEN";
|
|
13140
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
13141
|
-
readonly ALL: "ALL";
|
|
13142
|
-
};
|
|
13143
|
-
export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
13144
|
-
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
13145
|
-
readonly CREATOR: "CREATOR";
|
|
13146
|
-
readonly INTERNAL: "INTERNAL";
|
|
13147
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
13148
|
-
};
|
|
13149
|
-
export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
13150
|
-
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
13151
|
-
readonly DISABLED: "DISABLED";
|
|
13152
|
-
readonly ENABLED: "ENABLED";
|
|
13153
|
-
};
|
|
13154
|
-
export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
13155
13176
|
/**
|
|
13156
13177
|
*
|
|
13157
13178
|
* @export
|
|
@@ -13185,10 +13206,10 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
13185
13206
|
id?: string;
|
|
13186
13207
|
/**
|
|
13187
13208
|
*
|
|
13188
|
-
* @type {
|
|
13209
|
+
* @type {JsonApiNotificationChannelInAttributes}
|
|
13189
13210
|
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13190
13211
|
*/
|
|
13191
|
-
attributes?:
|
|
13212
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
13192
13213
|
}
|
|
13193
13214
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
13194
13215
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13233,15 +13254,97 @@ export interface JsonApiOrganizationIn {
|
|
|
13233
13254
|
id: string;
|
|
13234
13255
|
/**
|
|
13235
13256
|
*
|
|
13236
|
-
* @type {
|
|
13257
|
+
* @type {JsonApiOrganizationInAttributes}
|
|
13237
13258
|
* @memberof JsonApiOrganizationIn
|
|
13238
13259
|
*/
|
|
13239
|
-
attributes?:
|
|
13260
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
13240
13261
|
}
|
|
13241
13262
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
13242
13263
|
readonly ORGANIZATION: "organization";
|
|
13243
13264
|
};
|
|
13244
13265
|
export type JsonApiOrganizationInTypeEnum = typeof JsonApiOrganizationInTypeEnum[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
13266
|
+
/**
|
|
13267
|
+
*
|
|
13268
|
+
* @export
|
|
13269
|
+
* @interface JsonApiOrganizationInAttributes
|
|
13270
|
+
*/
|
|
13271
|
+
export interface JsonApiOrganizationInAttributes {
|
|
13272
|
+
/**
|
|
13273
|
+
*
|
|
13274
|
+
* @type {string}
|
|
13275
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13276
|
+
*/
|
|
13277
|
+
name?: string | null;
|
|
13278
|
+
/**
|
|
13279
|
+
*
|
|
13280
|
+
* @type {string}
|
|
13281
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13282
|
+
*/
|
|
13283
|
+
hostname?: string;
|
|
13284
|
+
/**
|
|
13285
|
+
*
|
|
13286
|
+
* @type {Array<string>}
|
|
13287
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13288
|
+
*/
|
|
13289
|
+
allowedOrigins?: Array<string>;
|
|
13290
|
+
/**
|
|
13291
|
+
*
|
|
13292
|
+
* @type {string}
|
|
13293
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13294
|
+
*/
|
|
13295
|
+
oauthIssuerLocation?: string;
|
|
13296
|
+
/**
|
|
13297
|
+
*
|
|
13298
|
+
* @type {string}
|
|
13299
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13300
|
+
*/
|
|
13301
|
+
oauthClientId?: string;
|
|
13302
|
+
/**
|
|
13303
|
+
*
|
|
13304
|
+
* @type {string}
|
|
13305
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13306
|
+
*/
|
|
13307
|
+
oauthClientSecret?: string;
|
|
13308
|
+
/**
|
|
13309
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
13310
|
+
* @type {string}
|
|
13311
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13312
|
+
* @deprecated
|
|
13313
|
+
*/
|
|
13314
|
+
earlyAccess?: string | null;
|
|
13315
|
+
/**
|
|
13316
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
13317
|
+
* @type {Array<string>}
|
|
13318
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13319
|
+
*/
|
|
13320
|
+
earlyAccessValues?: Array<string> | null;
|
|
13321
|
+
/**
|
|
13322
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
13323
|
+
* @type {string}
|
|
13324
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13325
|
+
*/
|
|
13326
|
+
oauthIssuerId?: string;
|
|
13327
|
+
/**
|
|
13328
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
13329
|
+
* @type {string}
|
|
13330
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13331
|
+
*/
|
|
13332
|
+
oauthSubjectIdClaim?: string;
|
|
13333
|
+
/**
|
|
13334
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
13335
|
+
* @type {{ [key: string]: string; }}
|
|
13336
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13337
|
+
*/
|
|
13338
|
+
oauthCustomAuthAttributes?: {
|
|
13339
|
+
[key: string]: string;
|
|
13340
|
+
};
|
|
13341
|
+
/**
|
|
13342
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
13343
|
+
* @type {Array<string>}
|
|
13344
|
+
* @memberof JsonApiOrganizationInAttributes
|
|
13345
|
+
*/
|
|
13346
|
+
oauthCustomScopes?: Array<string> | null;
|
|
13347
|
+
}
|
|
13245
13348
|
/**
|
|
13246
13349
|
*
|
|
13247
13350
|
* @export
|
|
@@ -13458,16 +13561,16 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
13458
13561
|
export interface JsonApiOrganizationOutRelationships {
|
|
13459
13562
|
/**
|
|
13460
13563
|
*
|
|
13461
|
-
* @type {
|
|
13564
|
+
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
13462
13565
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13463
13566
|
*/
|
|
13464
|
-
bootstrapUser?:
|
|
13567
|
+
bootstrapUser?: JsonApiFilterViewPatchRelationshipsUser;
|
|
13465
13568
|
/**
|
|
13466
13569
|
*
|
|
13467
|
-
* @type {
|
|
13570
|
+
* @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
|
|
13468
13571
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13469
13572
|
*/
|
|
13470
|
-
bootstrapUserGroup?:
|
|
13573
|
+
bootstrapUserGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
13471
13574
|
}
|
|
13472
13575
|
/**
|
|
13473
13576
|
* JSON:API representation of patching organization entity.
|
|
@@ -13489,97 +13592,15 @@ export interface JsonApiOrganizationPatch {
|
|
|
13489
13592
|
id: string;
|
|
13490
13593
|
/**
|
|
13491
13594
|
*
|
|
13492
|
-
* @type {
|
|
13595
|
+
* @type {JsonApiOrganizationInAttributes}
|
|
13493
13596
|
* @memberof JsonApiOrganizationPatch
|
|
13494
13597
|
*/
|
|
13495
|
-
attributes?:
|
|
13598
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
13496
13599
|
}
|
|
13497
13600
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
13498
13601
|
readonly ORGANIZATION: "organization";
|
|
13499
13602
|
};
|
|
13500
13603
|
export type JsonApiOrganizationPatchTypeEnum = typeof JsonApiOrganizationPatchTypeEnum[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
13501
|
-
/**
|
|
13502
|
-
*
|
|
13503
|
-
* @export
|
|
13504
|
-
* @interface JsonApiOrganizationPatchAttributes
|
|
13505
|
-
*/
|
|
13506
|
-
export interface JsonApiOrganizationPatchAttributes {
|
|
13507
|
-
/**
|
|
13508
|
-
*
|
|
13509
|
-
* @type {string}
|
|
13510
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13511
|
-
*/
|
|
13512
|
-
name?: string | null;
|
|
13513
|
-
/**
|
|
13514
|
-
*
|
|
13515
|
-
* @type {string}
|
|
13516
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13517
|
-
*/
|
|
13518
|
-
hostname?: string;
|
|
13519
|
-
/**
|
|
13520
|
-
*
|
|
13521
|
-
* @type {Array<string>}
|
|
13522
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13523
|
-
*/
|
|
13524
|
-
allowedOrigins?: Array<string>;
|
|
13525
|
-
/**
|
|
13526
|
-
*
|
|
13527
|
-
* @type {string}
|
|
13528
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13529
|
-
*/
|
|
13530
|
-
oauthIssuerLocation?: string;
|
|
13531
|
-
/**
|
|
13532
|
-
*
|
|
13533
|
-
* @type {string}
|
|
13534
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13535
|
-
*/
|
|
13536
|
-
oauthClientId?: string;
|
|
13537
|
-
/**
|
|
13538
|
-
*
|
|
13539
|
-
* @type {string}
|
|
13540
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13541
|
-
*/
|
|
13542
|
-
oauthClientSecret?: string;
|
|
13543
|
-
/**
|
|
13544
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
13545
|
-
* @type {string}
|
|
13546
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13547
|
-
* @deprecated
|
|
13548
|
-
*/
|
|
13549
|
-
earlyAccess?: string | null;
|
|
13550
|
-
/**
|
|
13551
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
13552
|
-
* @type {Array<string>}
|
|
13553
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13554
|
-
*/
|
|
13555
|
-
earlyAccessValues?: Array<string> | null;
|
|
13556
|
-
/**
|
|
13557
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
13558
|
-
* @type {string}
|
|
13559
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13560
|
-
*/
|
|
13561
|
-
oauthIssuerId?: string;
|
|
13562
|
-
/**
|
|
13563
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
13564
|
-
* @type {string}
|
|
13565
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13566
|
-
*/
|
|
13567
|
-
oauthSubjectIdClaim?: string;
|
|
13568
|
-
/**
|
|
13569
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
13570
|
-
* @type {{ [key: string]: string; }}
|
|
13571
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13572
|
-
*/
|
|
13573
|
-
oauthCustomAuthAttributes?: {
|
|
13574
|
-
[key: string]: string;
|
|
13575
|
-
};
|
|
13576
|
-
/**
|
|
13577
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
13578
|
-
* @type {Array<string>}
|
|
13579
|
-
* @memberof JsonApiOrganizationPatchAttributes
|
|
13580
|
-
*/
|
|
13581
|
-
oauthCustomScopes?: Array<string> | null;
|
|
13582
|
-
}
|
|
13583
13604
|
/**
|
|
13584
13605
|
*
|
|
13585
13606
|
* @export
|
|
@@ -13613,10 +13634,10 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
13613
13634
|
id: string;
|
|
13614
13635
|
/**
|
|
13615
13636
|
*
|
|
13616
|
-
* @type {
|
|
13637
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
13617
13638
|
* @memberof JsonApiOrganizationSettingIn
|
|
13618
13639
|
*/
|
|
13619
|
-
attributes?:
|
|
13640
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
13620
13641
|
}
|
|
13621
13642
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
13622
13643
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -13655,10 +13676,10 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
13655
13676
|
id: string;
|
|
13656
13677
|
/**
|
|
13657
13678
|
*
|
|
13658
|
-
* @type {
|
|
13679
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
13659
13680
|
* @memberof JsonApiOrganizationSettingOut
|
|
13660
13681
|
*/
|
|
13661
|
-
attributes?:
|
|
13682
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
13662
13683
|
}
|
|
13663
13684
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
13664
13685
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -13703,10 +13724,10 @@ export interface JsonApiOrganizationSettingOutList {
|
|
|
13703
13724
|
links?: ListLinks;
|
|
13704
13725
|
/**
|
|
13705
13726
|
*
|
|
13706
|
-
* @type {
|
|
13727
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13707
13728
|
* @memberof JsonApiOrganizationSettingOutList
|
|
13708
13729
|
*/
|
|
13709
|
-
meta?:
|
|
13730
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13710
13731
|
}
|
|
13711
13732
|
/**
|
|
13712
13733
|
*
|
|
@@ -13728,10 +13749,10 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
13728
13749
|
id: string;
|
|
13729
13750
|
/**
|
|
13730
13751
|
*
|
|
13731
|
-
* @type {
|
|
13752
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
13732
13753
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
13733
13754
|
*/
|
|
13734
|
-
attributes?:
|
|
13755
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
13735
13756
|
/**
|
|
13736
13757
|
*
|
|
13737
13758
|
* @type {ObjectLinks}
|
|
@@ -13763,57 +13784,15 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
13763
13784
|
id: string;
|
|
13764
13785
|
/**
|
|
13765
13786
|
*
|
|
13766
|
-
* @type {
|
|
13787
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
13767
13788
|
* @memberof JsonApiOrganizationSettingPatch
|
|
13768
13789
|
*/
|
|
13769
|
-
attributes?:
|
|
13790
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
13770
13791
|
}
|
|
13771
13792
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
13772
13793
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
13773
13794
|
};
|
|
13774
13795
|
export type JsonApiOrganizationSettingPatchTypeEnum = typeof JsonApiOrganizationSettingPatchTypeEnum[keyof typeof JsonApiOrganizationSettingPatchTypeEnum];
|
|
13775
|
-
/**
|
|
13776
|
-
*
|
|
13777
|
-
* @export
|
|
13778
|
-
* @interface JsonApiOrganizationSettingPatchAttributes
|
|
13779
|
-
*/
|
|
13780
|
-
export interface JsonApiOrganizationSettingPatchAttributes {
|
|
13781
|
-
/**
|
|
13782
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
13783
|
-
* @type {object}
|
|
13784
|
-
* @memberof JsonApiOrganizationSettingPatchAttributes
|
|
13785
|
-
*/
|
|
13786
|
-
content?: object;
|
|
13787
|
-
/**
|
|
13788
|
-
*
|
|
13789
|
-
* @type {string}
|
|
13790
|
-
* @memberof JsonApiOrganizationSettingPatchAttributes
|
|
13791
|
-
*/
|
|
13792
|
-
type?: JsonApiOrganizationSettingPatchAttributesTypeEnum;
|
|
13793
|
-
}
|
|
13794
|
-
export declare const JsonApiOrganizationSettingPatchAttributesTypeEnum: {
|
|
13795
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
13796
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
13797
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
13798
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
13799
|
-
readonly LOCALE: "LOCALE";
|
|
13800
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
13801
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
13802
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
13803
|
-
readonly WEEK_START: "WEEK_START";
|
|
13804
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
13805
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
13806
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
13807
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
13808
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
13809
|
-
readonly ALERT: "ALERT";
|
|
13810
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
13811
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
13812
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
13813
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
13814
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
13815
|
-
};
|
|
13816
|
-
export type JsonApiOrganizationSettingPatchAttributesTypeEnum = typeof JsonApiOrganizationSettingPatchAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingPatchAttributesTypeEnum];
|
|
13817
13796
|
/**
|
|
13818
13797
|
*
|
|
13819
13798
|
* @export
|
|
@@ -13937,10 +13916,10 @@ export interface JsonApiThemeOutList {
|
|
|
13937
13916
|
links?: ListLinks;
|
|
13938
13917
|
/**
|
|
13939
13918
|
*
|
|
13940
|
-
* @type {
|
|
13919
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
13941
13920
|
* @memberof JsonApiThemeOutList
|
|
13942
13921
|
*/
|
|
13943
|
-
meta?:
|
|
13922
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
13944
13923
|
}
|
|
13945
13924
|
/**
|
|
13946
13925
|
*
|
|
@@ -14195,10 +14174,10 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14195
14174
|
links?: ListLinks;
|
|
14196
14175
|
/**
|
|
14197
14176
|
*
|
|
14198
|
-
* @type {
|
|
14177
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14199
14178
|
* @memberof JsonApiUserDataFilterOutList
|
|
14200
14179
|
*/
|
|
14201
|
-
meta?:
|
|
14180
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14202
14181
|
/**
|
|
14203
14182
|
* Included resources
|
|
14204
14183
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -14214,16 +14193,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14214
14193
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
14215
14194
|
/**
|
|
14216
14195
|
*
|
|
14217
|
-
* @type {
|
|
14196
|
+
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
14218
14197
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14219
14198
|
*/
|
|
14220
|
-
user?:
|
|
14199
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
14221
14200
|
/**
|
|
14222
14201
|
*
|
|
14223
|
-
* @type {
|
|
14202
|
+
* @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
|
|
14224
14203
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14225
14204
|
*/
|
|
14226
|
-
userGroup?:
|
|
14205
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
14227
14206
|
/**
|
|
14228
14207
|
*
|
|
14229
14208
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -14255,19 +14234,6 @@ export interface JsonApiUserDataFilterOutRelationships {
|
|
|
14255
14234
|
*/
|
|
14256
14235
|
datasets?: JsonApiVisualizationObjectOutRelationshipsDatasets;
|
|
14257
14236
|
}
|
|
14258
|
-
/**
|
|
14259
|
-
*
|
|
14260
|
-
* @export
|
|
14261
|
-
* @interface JsonApiUserDataFilterOutRelationshipsUserGroup
|
|
14262
|
-
*/
|
|
14263
|
-
export interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
14264
|
-
/**
|
|
14265
|
-
*
|
|
14266
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
14267
|
-
* @memberof JsonApiUserDataFilterOutRelationshipsUserGroup
|
|
14268
|
-
*/
|
|
14269
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
14270
|
-
}
|
|
14271
14237
|
/**
|
|
14272
14238
|
*
|
|
14273
14239
|
* @export
|
|
@@ -14408,16 +14374,29 @@ export interface JsonApiUserDataFilterPatchDocument {
|
|
|
14408
14374
|
export interface JsonApiUserDataFilterPatchRelationships {
|
|
14409
14375
|
/**
|
|
14410
14376
|
*
|
|
14411
|
-
* @type {
|
|
14377
|
+
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
14412
14378
|
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
14413
14379
|
*/
|
|
14414
|
-
user?:
|
|
14380
|
+
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
14415
14381
|
/**
|
|
14416
14382
|
*
|
|
14417
|
-
* @type {
|
|
14383
|
+
* @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
|
|
14418
14384
|
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
14419
14385
|
*/
|
|
14420
|
-
userGroup?:
|
|
14386
|
+
userGroup?: JsonApiUserDataFilterPatchRelationshipsUserGroup;
|
|
14387
|
+
}
|
|
14388
|
+
/**
|
|
14389
|
+
*
|
|
14390
|
+
* @export
|
|
14391
|
+
* @interface JsonApiUserDataFilterPatchRelationshipsUserGroup
|
|
14392
|
+
*/
|
|
14393
|
+
export interface JsonApiUserDataFilterPatchRelationshipsUserGroup {
|
|
14394
|
+
/**
|
|
14395
|
+
*
|
|
14396
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
14397
|
+
* @memberof JsonApiUserDataFilterPatchRelationshipsUserGroup
|
|
14398
|
+
*/
|
|
14399
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
14421
14400
|
}
|
|
14422
14401
|
/**
|
|
14423
14402
|
* JSON:API representation of userDataFilter entity.
|
|
@@ -14487,16 +14466,16 @@ export interface JsonApiUserGroupIn {
|
|
|
14487
14466
|
id: string;
|
|
14488
14467
|
/**
|
|
14489
14468
|
*
|
|
14490
|
-
* @type {
|
|
14469
|
+
* @type {JsonApiUserGroupOutAttributes}
|
|
14491
14470
|
* @memberof JsonApiUserGroupIn
|
|
14492
14471
|
*/
|
|
14493
|
-
attributes?:
|
|
14472
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
14494
14473
|
/**
|
|
14495
14474
|
*
|
|
14496
|
-
* @type {
|
|
14475
|
+
* @type {JsonApiUserGroupOutRelationships}
|
|
14497
14476
|
* @memberof JsonApiUserGroupIn
|
|
14498
14477
|
*/
|
|
14499
|
-
relationships?:
|
|
14478
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
14500
14479
|
}
|
|
14501
14480
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
14502
14481
|
readonly USER_GROUP: "userGroup";
|
|
@@ -14558,21 +14537,34 @@ export interface JsonApiUserGroupOut {
|
|
|
14558
14537
|
id: string;
|
|
14559
14538
|
/**
|
|
14560
14539
|
*
|
|
14561
|
-
* @type {
|
|
14540
|
+
* @type {JsonApiUserGroupOutAttributes}
|
|
14562
14541
|
* @memberof JsonApiUserGroupOut
|
|
14563
14542
|
*/
|
|
14564
|
-
attributes?:
|
|
14543
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
14565
14544
|
/**
|
|
14566
14545
|
*
|
|
14567
|
-
* @type {
|
|
14546
|
+
* @type {JsonApiUserGroupOutRelationships}
|
|
14568
14547
|
* @memberof JsonApiUserGroupOut
|
|
14569
14548
|
*/
|
|
14570
|
-
relationships?:
|
|
14549
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
14571
14550
|
}
|
|
14572
14551
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
14573
14552
|
readonly USER_GROUP: "userGroup";
|
|
14574
14553
|
};
|
|
14575
14554
|
export type JsonApiUserGroupOutTypeEnum = typeof JsonApiUserGroupOutTypeEnum[keyof typeof JsonApiUserGroupOutTypeEnum];
|
|
14555
|
+
/**
|
|
14556
|
+
*
|
|
14557
|
+
* @export
|
|
14558
|
+
* @interface JsonApiUserGroupOutAttributes
|
|
14559
|
+
*/
|
|
14560
|
+
export interface JsonApiUserGroupOutAttributes {
|
|
14561
|
+
/**
|
|
14562
|
+
*
|
|
14563
|
+
* @type {string}
|
|
14564
|
+
* @memberof JsonApiUserGroupOutAttributes
|
|
14565
|
+
*/
|
|
14566
|
+
name?: string;
|
|
14567
|
+
}
|
|
14576
14568
|
/**
|
|
14577
14569
|
*
|
|
14578
14570
|
* @export
|
|
@@ -14618,10 +14610,10 @@ export interface JsonApiUserGroupOutList {
|
|
|
14618
14610
|
links?: ListLinks;
|
|
14619
14611
|
/**
|
|
14620
14612
|
*
|
|
14621
|
-
* @type {
|
|
14613
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14622
14614
|
* @memberof JsonApiUserGroupOutList
|
|
14623
14615
|
*/
|
|
14624
|
-
meta?:
|
|
14616
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14625
14617
|
/**
|
|
14626
14618
|
* Included resources
|
|
14627
14619
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -14629,6 +14621,19 @@ export interface JsonApiUserGroupOutList {
|
|
|
14629
14621
|
*/
|
|
14630
14622
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
14631
14623
|
}
|
|
14624
|
+
/**
|
|
14625
|
+
*
|
|
14626
|
+
* @export
|
|
14627
|
+
* @interface JsonApiUserGroupOutRelationships
|
|
14628
|
+
*/
|
|
14629
|
+
export interface JsonApiUserGroupOutRelationships {
|
|
14630
|
+
/**
|
|
14631
|
+
*
|
|
14632
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
14633
|
+
* @memberof JsonApiUserGroupOutRelationships
|
|
14634
|
+
*/
|
|
14635
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
14636
|
+
}
|
|
14632
14637
|
/**
|
|
14633
14638
|
*
|
|
14634
14639
|
* @export
|
|
@@ -14649,16 +14654,16 @@ export interface JsonApiUserGroupOutWithLinks {
|
|
|
14649
14654
|
id: string;
|
|
14650
14655
|
/**
|
|
14651
14656
|
*
|
|
14652
|
-
* @type {
|
|
14657
|
+
* @type {JsonApiUserGroupOutAttributes}
|
|
14653
14658
|
* @memberof JsonApiUserGroupOutWithLinks
|
|
14654
14659
|
*/
|
|
14655
|
-
attributes?:
|
|
14660
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
14656
14661
|
/**
|
|
14657
14662
|
*
|
|
14658
|
-
* @type {
|
|
14663
|
+
* @type {JsonApiUserGroupOutRelationships}
|
|
14659
14664
|
* @memberof JsonApiUserGroupOutWithLinks
|
|
14660
14665
|
*/
|
|
14661
|
-
relationships?:
|
|
14666
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
14662
14667
|
/**
|
|
14663
14668
|
*
|
|
14664
14669
|
* @type {ObjectLinks}
|
|
@@ -14690,34 +14695,21 @@ export interface JsonApiUserGroupPatch {
|
|
|
14690
14695
|
id: string;
|
|
14691
14696
|
/**
|
|
14692
14697
|
*
|
|
14693
|
-
* @type {
|
|
14698
|
+
* @type {JsonApiUserGroupOutAttributes}
|
|
14694
14699
|
* @memberof JsonApiUserGroupPatch
|
|
14695
14700
|
*/
|
|
14696
|
-
attributes?:
|
|
14701
|
+
attributes?: JsonApiUserGroupOutAttributes;
|
|
14697
14702
|
/**
|
|
14698
14703
|
*
|
|
14699
|
-
* @type {
|
|
14704
|
+
* @type {JsonApiUserGroupOutRelationships}
|
|
14700
14705
|
* @memberof JsonApiUserGroupPatch
|
|
14701
14706
|
*/
|
|
14702
|
-
relationships?:
|
|
14707
|
+
relationships?: JsonApiUserGroupOutRelationships;
|
|
14703
14708
|
}
|
|
14704
14709
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
14705
14710
|
readonly USER_GROUP: "userGroup";
|
|
14706
14711
|
};
|
|
14707
14712
|
export type JsonApiUserGroupPatchTypeEnum = typeof JsonApiUserGroupPatchTypeEnum[keyof typeof JsonApiUserGroupPatchTypeEnum];
|
|
14708
|
-
/**
|
|
14709
|
-
*
|
|
14710
|
-
* @export
|
|
14711
|
-
* @interface JsonApiUserGroupPatchAttributes
|
|
14712
|
-
*/
|
|
14713
|
-
export interface JsonApiUserGroupPatchAttributes {
|
|
14714
|
-
/**
|
|
14715
|
-
*
|
|
14716
|
-
* @type {string}
|
|
14717
|
-
* @memberof JsonApiUserGroupPatchAttributes
|
|
14718
|
-
*/
|
|
14719
|
-
name?: string;
|
|
14720
|
-
}
|
|
14721
14713
|
/**
|
|
14722
14714
|
*
|
|
14723
14715
|
* @export
|
|
@@ -14731,32 +14723,6 @@ export interface JsonApiUserGroupPatchDocument {
|
|
|
14731
14723
|
*/
|
|
14732
14724
|
data: JsonApiUserGroupPatch;
|
|
14733
14725
|
}
|
|
14734
|
-
/**
|
|
14735
|
-
*
|
|
14736
|
-
* @export
|
|
14737
|
-
* @interface JsonApiUserGroupPatchRelationships
|
|
14738
|
-
*/
|
|
14739
|
-
export interface JsonApiUserGroupPatchRelationships {
|
|
14740
|
-
/**
|
|
14741
|
-
*
|
|
14742
|
-
* @type {JsonApiUserGroupPatchRelationshipsParents}
|
|
14743
|
-
* @memberof JsonApiUserGroupPatchRelationships
|
|
14744
|
-
*/
|
|
14745
|
-
parents?: JsonApiUserGroupPatchRelationshipsParents;
|
|
14746
|
-
}
|
|
14747
|
-
/**
|
|
14748
|
-
*
|
|
14749
|
-
* @export
|
|
14750
|
-
* @interface JsonApiUserGroupPatchRelationshipsParents
|
|
14751
|
-
*/
|
|
14752
|
-
export interface JsonApiUserGroupPatchRelationshipsParents {
|
|
14753
|
-
/**
|
|
14754
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
14755
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
14756
|
-
* @memberof JsonApiUserGroupPatchRelationshipsParents
|
|
14757
|
-
*/
|
|
14758
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
14759
|
-
}
|
|
14760
14726
|
/**
|
|
14761
14727
|
* @type JsonApiUserGroupToOneLinkage
|
|
14762
14728
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -14879,10 +14845,10 @@ export interface JsonApiUserIdentifierOutList {
|
|
|
14879
14845
|
links?: ListLinks;
|
|
14880
14846
|
/**
|
|
14881
14847
|
*
|
|
14882
|
-
* @type {
|
|
14848
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
14883
14849
|
* @memberof JsonApiUserIdentifierOutList
|
|
14884
14850
|
*/
|
|
14885
|
-
meta?:
|
|
14851
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
14886
14852
|
}
|
|
14887
14853
|
/**
|
|
14888
14854
|
*
|
|
@@ -14945,16 +14911,16 @@ export interface JsonApiUserIn {
|
|
|
14945
14911
|
id: string;
|
|
14946
14912
|
/**
|
|
14947
14913
|
*
|
|
14948
|
-
* @type {
|
|
14914
|
+
* @type {JsonApiUserOutAttributes}
|
|
14949
14915
|
* @memberof JsonApiUserIn
|
|
14950
14916
|
*/
|
|
14951
|
-
attributes?:
|
|
14917
|
+
attributes?: JsonApiUserOutAttributes;
|
|
14952
14918
|
/**
|
|
14953
14919
|
*
|
|
14954
|
-
* @type {
|
|
14920
|
+
* @type {JsonApiUserOutRelationships}
|
|
14955
14921
|
* @memberof JsonApiUserIn
|
|
14956
14922
|
*/
|
|
14957
|
-
relationships?:
|
|
14923
|
+
relationships?: JsonApiUserOutRelationships;
|
|
14958
14924
|
}
|
|
14959
14925
|
export declare const JsonApiUserInTypeEnum: {
|
|
14960
14926
|
readonly USER: "user";
|
|
@@ -15016,21 +14982,52 @@ export interface JsonApiUserOut {
|
|
|
15016
14982
|
id: string;
|
|
15017
14983
|
/**
|
|
15018
14984
|
*
|
|
15019
|
-
* @type {
|
|
14985
|
+
* @type {JsonApiUserOutAttributes}
|
|
15020
14986
|
* @memberof JsonApiUserOut
|
|
15021
14987
|
*/
|
|
15022
|
-
attributes?:
|
|
14988
|
+
attributes?: JsonApiUserOutAttributes;
|
|
15023
14989
|
/**
|
|
15024
14990
|
*
|
|
15025
|
-
* @type {
|
|
14991
|
+
* @type {JsonApiUserOutRelationships}
|
|
15026
14992
|
* @memberof JsonApiUserOut
|
|
15027
14993
|
*/
|
|
15028
|
-
relationships?:
|
|
14994
|
+
relationships?: JsonApiUserOutRelationships;
|
|
15029
14995
|
}
|
|
15030
14996
|
export declare const JsonApiUserOutTypeEnum: {
|
|
15031
14997
|
readonly USER: "user";
|
|
15032
14998
|
};
|
|
15033
14999
|
export type JsonApiUserOutTypeEnum = typeof JsonApiUserOutTypeEnum[keyof typeof JsonApiUserOutTypeEnum];
|
|
15000
|
+
/**
|
|
15001
|
+
*
|
|
15002
|
+
* @export
|
|
15003
|
+
* @interface JsonApiUserOutAttributes
|
|
15004
|
+
*/
|
|
15005
|
+
export interface JsonApiUserOutAttributes {
|
|
15006
|
+
/**
|
|
15007
|
+
*
|
|
15008
|
+
* @type {string}
|
|
15009
|
+
* @memberof JsonApiUserOutAttributes
|
|
15010
|
+
*/
|
|
15011
|
+
authenticationId?: string;
|
|
15012
|
+
/**
|
|
15013
|
+
*
|
|
15014
|
+
* @type {string}
|
|
15015
|
+
* @memberof JsonApiUserOutAttributes
|
|
15016
|
+
*/
|
|
15017
|
+
firstname?: string;
|
|
15018
|
+
/**
|
|
15019
|
+
*
|
|
15020
|
+
* @type {string}
|
|
15021
|
+
* @memberof JsonApiUserOutAttributes
|
|
15022
|
+
*/
|
|
15023
|
+
lastname?: string;
|
|
15024
|
+
/**
|
|
15025
|
+
*
|
|
15026
|
+
* @type {string}
|
|
15027
|
+
* @memberof JsonApiUserOutAttributes
|
|
15028
|
+
*/
|
|
15029
|
+
email?: string;
|
|
15030
|
+
}
|
|
15034
15031
|
/**
|
|
15035
15032
|
*
|
|
15036
15033
|
* @export
|
|
@@ -15076,10 +15073,10 @@ export interface JsonApiUserOutList {
|
|
|
15076
15073
|
links?: ListLinks;
|
|
15077
15074
|
/**
|
|
15078
15075
|
*
|
|
15079
|
-
* @type {
|
|
15076
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15080
15077
|
* @memberof JsonApiUserOutList
|
|
15081
15078
|
*/
|
|
15082
|
-
meta?:
|
|
15079
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15083
15080
|
/**
|
|
15084
15081
|
* Included resources
|
|
15085
15082
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -15087,6 +15084,32 @@ export interface JsonApiUserOutList {
|
|
|
15087
15084
|
*/
|
|
15088
15085
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
15089
15086
|
}
|
|
15087
|
+
/**
|
|
15088
|
+
*
|
|
15089
|
+
* @export
|
|
15090
|
+
* @interface JsonApiUserOutRelationships
|
|
15091
|
+
*/
|
|
15092
|
+
export interface JsonApiUserOutRelationships {
|
|
15093
|
+
/**
|
|
15094
|
+
*
|
|
15095
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
15096
|
+
* @memberof JsonApiUserOutRelationships
|
|
15097
|
+
*/
|
|
15098
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
15099
|
+
}
|
|
15100
|
+
/**
|
|
15101
|
+
*
|
|
15102
|
+
* @export
|
|
15103
|
+
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
15104
|
+
*/
|
|
15105
|
+
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
15106
|
+
/**
|
|
15107
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
15108
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
15109
|
+
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
15110
|
+
*/
|
|
15111
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
15112
|
+
}
|
|
15090
15113
|
/**
|
|
15091
15114
|
*
|
|
15092
15115
|
* @export
|
|
@@ -15107,16 +15130,16 @@ export interface JsonApiUserOutWithLinks {
|
|
|
15107
15130
|
id: string;
|
|
15108
15131
|
/**
|
|
15109
15132
|
*
|
|
15110
|
-
* @type {
|
|
15133
|
+
* @type {JsonApiUserOutAttributes}
|
|
15111
15134
|
* @memberof JsonApiUserOutWithLinks
|
|
15112
15135
|
*/
|
|
15113
|
-
attributes?:
|
|
15136
|
+
attributes?: JsonApiUserOutAttributes;
|
|
15114
15137
|
/**
|
|
15115
15138
|
*
|
|
15116
|
-
* @type {
|
|
15139
|
+
* @type {JsonApiUserOutRelationships}
|
|
15117
15140
|
* @memberof JsonApiUserOutWithLinks
|
|
15118
15141
|
*/
|
|
15119
|
-
relationships?:
|
|
15142
|
+
relationships?: JsonApiUserOutRelationships;
|
|
15120
15143
|
/**
|
|
15121
15144
|
*
|
|
15122
15145
|
* @type {ObjectLinks}
|
|
@@ -15148,52 +15171,21 @@ export interface JsonApiUserPatch {
|
|
|
15148
15171
|
id: string;
|
|
15149
15172
|
/**
|
|
15150
15173
|
*
|
|
15151
|
-
* @type {
|
|
15174
|
+
* @type {JsonApiUserOutAttributes}
|
|
15152
15175
|
* @memberof JsonApiUserPatch
|
|
15153
15176
|
*/
|
|
15154
|
-
attributes?:
|
|
15177
|
+
attributes?: JsonApiUserOutAttributes;
|
|
15155
15178
|
/**
|
|
15156
15179
|
*
|
|
15157
|
-
* @type {
|
|
15180
|
+
* @type {JsonApiUserOutRelationships}
|
|
15158
15181
|
* @memberof JsonApiUserPatch
|
|
15159
15182
|
*/
|
|
15160
|
-
relationships?:
|
|
15183
|
+
relationships?: JsonApiUserOutRelationships;
|
|
15161
15184
|
}
|
|
15162
15185
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
15163
15186
|
readonly USER: "user";
|
|
15164
15187
|
};
|
|
15165
15188
|
export type JsonApiUserPatchTypeEnum = typeof JsonApiUserPatchTypeEnum[keyof typeof JsonApiUserPatchTypeEnum];
|
|
15166
|
-
/**
|
|
15167
|
-
*
|
|
15168
|
-
* @export
|
|
15169
|
-
* @interface JsonApiUserPatchAttributes
|
|
15170
|
-
*/
|
|
15171
|
-
export interface JsonApiUserPatchAttributes {
|
|
15172
|
-
/**
|
|
15173
|
-
*
|
|
15174
|
-
* @type {string}
|
|
15175
|
-
* @memberof JsonApiUserPatchAttributes
|
|
15176
|
-
*/
|
|
15177
|
-
authenticationId?: string;
|
|
15178
|
-
/**
|
|
15179
|
-
*
|
|
15180
|
-
* @type {string}
|
|
15181
|
-
* @memberof JsonApiUserPatchAttributes
|
|
15182
|
-
*/
|
|
15183
|
-
firstname?: string;
|
|
15184
|
-
/**
|
|
15185
|
-
*
|
|
15186
|
-
* @type {string}
|
|
15187
|
-
* @memberof JsonApiUserPatchAttributes
|
|
15188
|
-
*/
|
|
15189
|
-
lastname?: string;
|
|
15190
|
-
/**
|
|
15191
|
-
*
|
|
15192
|
-
* @type {string}
|
|
15193
|
-
* @memberof JsonApiUserPatchAttributes
|
|
15194
|
-
*/
|
|
15195
|
-
email?: string;
|
|
15196
|
-
}
|
|
15197
15189
|
/**
|
|
15198
15190
|
*
|
|
15199
15191
|
* @export
|
|
@@ -15205,20 +15197,7 @@ export interface JsonApiUserPatchDocument {
|
|
|
15205
15197
|
* @type {JsonApiUserPatch}
|
|
15206
15198
|
* @memberof JsonApiUserPatchDocument
|
|
15207
15199
|
*/
|
|
15208
|
-
data: JsonApiUserPatch;
|
|
15209
|
-
}
|
|
15210
|
-
/**
|
|
15211
|
-
*
|
|
15212
|
-
* @export
|
|
15213
|
-
* @interface JsonApiUserPatchRelationships
|
|
15214
|
-
*/
|
|
15215
|
-
export interface JsonApiUserPatchRelationships {
|
|
15216
|
-
/**
|
|
15217
|
-
*
|
|
15218
|
-
* @type {JsonApiUserGroupPatchRelationshipsParents}
|
|
15219
|
-
* @memberof JsonApiUserPatchRelationships
|
|
15220
|
-
*/
|
|
15221
|
-
userGroups?: JsonApiUserGroupPatchRelationshipsParents;
|
|
15200
|
+
data: JsonApiUserPatch;
|
|
15222
15201
|
}
|
|
15223
15202
|
/**
|
|
15224
15203
|
* JSON:API representation of userSetting entity.
|
|
@@ -15240,10 +15219,10 @@ export interface JsonApiUserSettingIn {
|
|
|
15240
15219
|
id: string;
|
|
15241
15220
|
/**
|
|
15242
15221
|
*
|
|
15243
|
-
* @type {
|
|
15222
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15244
15223
|
* @memberof JsonApiUserSettingIn
|
|
15245
15224
|
*/
|
|
15246
|
-
attributes?:
|
|
15225
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15247
15226
|
}
|
|
15248
15227
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
15249
15228
|
readonly USER_SETTING: "userSetting";
|
|
@@ -15282,15 +15261,57 @@ export interface JsonApiUserSettingOut {
|
|
|
15282
15261
|
id: string;
|
|
15283
15262
|
/**
|
|
15284
15263
|
*
|
|
15285
|
-
* @type {
|
|
15264
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15286
15265
|
* @memberof JsonApiUserSettingOut
|
|
15287
15266
|
*/
|
|
15288
|
-
attributes?:
|
|
15267
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15289
15268
|
}
|
|
15290
15269
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
15291
15270
|
readonly USER_SETTING: "userSetting";
|
|
15292
15271
|
};
|
|
15293
15272
|
export type JsonApiUserSettingOutTypeEnum = typeof JsonApiUserSettingOutTypeEnum[keyof typeof JsonApiUserSettingOutTypeEnum];
|
|
15273
|
+
/**
|
|
15274
|
+
*
|
|
15275
|
+
* @export
|
|
15276
|
+
* @interface JsonApiUserSettingOutAttributes
|
|
15277
|
+
*/
|
|
15278
|
+
export interface JsonApiUserSettingOutAttributes {
|
|
15279
|
+
/**
|
|
15280
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
15281
|
+
* @type {object}
|
|
15282
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
15283
|
+
*/
|
|
15284
|
+
content?: object;
|
|
15285
|
+
/**
|
|
15286
|
+
*
|
|
15287
|
+
* @type {string}
|
|
15288
|
+
* @memberof JsonApiUserSettingOutAttributes
|
|
15289
|
+
*/
|
|
15290
|
+
type?: JsonApiUserSettingOutAttributesTypeEnum;
|
|
15291
|
+
}
|
|
15292
|
+
export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
15293
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
15294
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15295
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
15296
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
15297
|
+
readonly LOCALE: "LOCALE";
|
|
15298
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
15299
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
15300
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
15301
|
+
readonly WEEK_START: "WEEK_START";
|
|
15302
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
15303
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
15304
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
15305
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
15306
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
15307
|
+
readonly ALERT: "ALERT";
|
|
15308
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
15309
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
15310
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
15311
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
15312
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
15313
|
+
};
|
|
15314
|
+
export type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
15294
15315
|
/**
|
|
15295
15316
|
*
|
|
15296
15317
|
* @export
|
|
@@ -15330,10 +15351,10 @@ export interface JsonApiUserSettingOutList {
|
|
|
15330
15351
|
links?: ListLinks;
|
|
15331
15352
|
/**
|
|
15332
15353
|
*
|
|
15333
|
-
* @type {
|
|
15354
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15334
15355
|
* @memberof JsonApiUserSettingOutList
|
|
15335
15356
|
*/
|
|
15336
|
-
meta?:
|
|
15357
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15337
15358
|
}
|
|
15338
15359
|
/**
|
|
15339
15360
|
*
|
|
@@ -15355,10 +15376,10 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
15355
15376
|
id: string;
|
|
15356
15377
|
/**
|
|
15357
15378
|
*
|
|
15358
|
-
* @type {
|
|
15379
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
15359
15380
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
15360
15381
|
*/
|
|
15361
|
-
attributes?:
|
|
15382
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
15362
15383
|
/**
|
|
15363
15384
|
*
|
|
15364
15385
|
* @type {ObjectLinks}
|
|
@@ -15576,10 +15597,10 @@ export interface JsonApiVisualizationObjectOutList {
|
|
|
15576
15597
|
links?: ListLinks;
|
|
15577
15598
|
/**
|
|
15578
15599
|
*
|
|
15579
|
-
* @type {
|
|
15600
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
15580
15601
|
* @memberof JsonApiVisualizationObjectOutList
|
|
15581
15602
|
*/
|
|
15582
|
-
meta?:
|
|
15603
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
15583
15604
|
/**
|
|
15584
15605
|
* Included resources
|
|
15585
15606
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -16070,10 +16091,10 @@ export interface JsonApiWorkspaceDataFilterOutList {
|
|
|
16070
16091
|
links?: ListLinks;
|
|
16071
16092
|
/**
|
|
16072
16093
|
*
|
|
16073
|
-
* @type {
|
|
16094
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16074
16095
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
16075
16096
|
*/
|
|
16076
|
-
meta?:
|
|
16097
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16077
16098
|
/**
|
|
16078
16099
|
* Included resources
|
|
16079
16100
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -16222,16 +16243,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
16222
16243
|
id: string;
|
|
16223
16244
|
/**
|
|
16224
16245
|
*
|
|
16225
|
-
* @type {
|
|
16246
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16226
16247
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16227
16248
|
*/
|
|
16228
|
-
attributes?:
|
|
16249
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16229
16250
|
/**
|
|
16230
16251
|
*
|
|
16231
|
-
* @type {
|
|
16252
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16232
16253
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16233
16254
|
*/
|
|
16234
|
-
relationships?:
|
|
16255
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16235
16256
|
}
|
|
16236
16257
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
16237
16258
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -16299,46 +16320,21 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
16299
16320
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16300
16321
|
/**
|
|
16301
16322
|
*
|
|
16302
|
-
* @type {
|
|
16323
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16303
16324
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16304
16325
|
*/
|
|
16305
|
-
attributes?:
|
|
16326
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16306
16327
|
/**
|
|
16307
16328
|
*
|
|
16308
|
-
* @type {
|
|
16329
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16309
16330
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16310
16331
|
*/
|
|
16311
|
-
relationships?:
|
|
16332
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16312
16333
|
}
|
|
16313
16334
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
16314
16335
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16315
16336
|
};
|
|
16316
16337
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
16317
|
-
/**
|
|
16318
|
-
*
|
|
16319
|
-
* @export
|
|
16320
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16321
|
-
*/
|
|
16322
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
16323
|
-
/**
|
|
16324
|
-
*
|
|
16325
|
-
* @type {string}
|
|
16326
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16327
|
-
*/
|
|
16328
|
-
title?: string;
|
|
16329
|
-
/**
|
|
16330
|
-
*
|
|
16331
|
-
* @type {string}
|
|
16332
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16333
|
-
*/
|
|
16334
|
-
description?: string;
|
|
16335
|
-
/**
|
|
16336
|
-
*
|
|
16337
|
-
* @type {Array<string>}
|
|
16338
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16339
|
-
*/
|
|
16340
|
-
filterValues?: Array<string>;
|
|
16341
|
-
}
|
|
16342
16338
|
/**
|
|
16343
16339
|
*
|
|
16344
16340
|
* @export
|
|
@@ -16384,10 +16380,10 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
16384
16380
|
links?: ListLinks;
|
|
16385
16381
|
/**
|
|
16386
16382
|
*
|
|
16387
|
-
* @type {
|
|
16383
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16388
16384
|
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
16389
16385
|
*/
|
|
16390
|
-
meta?:
|
|
16386
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16391
16387
|
/**
|
|
16392
16388
|
* Included resources
|
|
16393
16389
|
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
@@ -16395,32 +16391,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
16395
16391
|
*/
|
|
16396
16392
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
16397
16393
|
}
|
|
16398
|
-
/**
|
|
16399
|
-
*
|
|
16400
|
-
* @export
|
|
16401
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16402
|
-
*/
|
|
16403
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
16404
|
-
/**
|
|
16405
|
-
*
|
|
16406
|
-
* @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
|
|
16407
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16408
|
-
*/
|
|
16409
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
16410
|
-
}
|
|
16411
|
-
/**
|
|
16412
|
-
*
|
|
16413
|
-
* @export
|
|
16414
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16415
|
-
*/
|
|
16416
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
16417
|
-
/**
|
|
16418
|
-
*
|
|
16419
|
-
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
16420
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16421
|
-
*/
|
|
16422
|
-
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
16423
|
-
}
|
|
16424
16394
|
/**
|
|
16425
16395
|
*
|
|
16426
16396
|
* @export
|
|
@@ -16447,16 +16417,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
16447
16417
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16448
16418
|
/**
|
|
16449
16419
|
*
|
|
16450
|
-
* @type {
|
|
16420
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16451
16421
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16452
16422
|
*/
|
|
16453
|
-
attributes?:
|
|
16423
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16454
16424
|
/**
|
|
16455
16425
|
*
|
|
16456
|
-
* @type {
|
|
16426
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16457
16427
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16458
16428
|
*/
|
|
16459
|
-
relationships?:
|
|
16429
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16460
16430
|
/**
|
|
16461
16431
|
*
|
|
16462
16432
|
* @type {ObjectLinks}
|
|
@@ -16488,21 +16458,46 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
16488
16458
|
id: string;
|
|
16489
16459
|
/**
|
|
16490
16460
|
*
|
|
16491
|
-
* @type {
|
|
16461
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
16492
16462
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16493
16463
|
*/
|
|
16494
|
-
attributes?:
|
|
16464
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
16495
16465
|
/**
|
|
16496
16466
|
*
|
|
16497
|
-
* @type {
|
|
16467
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
16498
16468
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16499
16469
|
*/
|
|
16500
|
-
relationships?:
|
|
16470
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
16501
16471
|
}
|
|
16502
16472
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
16503
16473
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16504
16474
|
};
|
|
16505
16475
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
16476
|
+
/**
|
|
16477
|
+
*
|
|
16478
|
+
* @export
|
|
16479
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
16480
|
+
*/
|
|
16481
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
16482
|
+
/**
|
|
16483
|
+
*
|
|
16484
|
+
* @type {string}
|
|
16485
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
16486
|
+
*/
|
|
16487
|
+
title?: string;
|
|
16488
|
+
/**
|
|
16489
|
+
*
|
|
16490
|
+
* @type {string}
|
|
16491
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
16492
|
+
*/
|
|
16493
|
+
description?: string;
|
|
16494
|
+
/**
|
|
16495
|
+
*
|
|
16496
|
+
* @type {Array<string>}
|
|
16497
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
16498
|
+
*/
|
|
16499
|
+
filterValues?: Array<string>;
|
|
16500
|
+
}
|
|
16506
16501
|
/**
|
|
16507
16502
|
*
|
|
16508
16503
|
* @export
|
|
@@ -16516,6 +16511,32 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
16516
16511
|
*/
|
|
16517
16512
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
16518
16513
|
}
|
|
16514
|
+
/**
|
|
16515
|
+
*
|
|
16516
|
+
* @export
|
|
16517
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
16518
|
+
*/
|
|
16519
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
16520
|
+
/**
|
|
16521
|
+
*
|
|
16522
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
16523
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
16524
|
+
*/
|
|
16525
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
16526
|
+
}
|
|
16527
|
+
/**
|
|
16528
|
+
*
|
|
16529
|
+
* @export
|
|
16530
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
16531
|
+
*/
|
|
16532
|
+
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
16533
|
+
/**
|
|
16534
|
+
*
|
|
16535
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
16536
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
16537
|
+
*/
|
|
16538
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
16539
|
+
}
|
|
16519
16540
|
/**
|
|
16520
16541
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
16521
16542
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -16542,16 +16563,16 @@ export interface JsonApiWorkspaceIn {
|
|
|
16542
16563
|
id: string;
|
|
16543
16564
|
/**
|
|
16544
16565
|
*
|
|
16545
|
-
* @type {
|
|
16566
|
+
* @type {JsonApiWorkspaceOutAttributes}
|
|
16546
16567
|
* @memberof JsonApiWorkspaceIn
|
|
16547
16568
|
*/
|
|
16548
|
-
attributes?:
|
|
16569
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
16549
16570
|
/**
|
|
16550
16571
|
*
|
|
16551
|
-
* @type {
|
|
16572
|
+
* @type {JsonApiWorkspaceOutRelationships}
|
|
16552
16573
|
* @memberof JsonApiWorkspaceIn
|
|
16553
16574
|
*/
|
|
16554
|
-
relationships?:
|
|
16575
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
16555
16576
|
}
|
|
16556
16577
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
16557
16578
|
readonly WORKSPACE: "workspace";
|
|
@@ -16619,21 +16640,90 @@ export interface JsonApiWorkspaceOut {
|
|
|
16619
16640
|
meta?: JsonApiWorkspaceOutMeta;
|
|
16620
16641
|
/**
|
|
16621
16642
|
*
|
|
16622
|
-
* @type {
|
|
16643
|
+
* @type {JsonApiWorkspaceOutAttributes}
|
|
16623
16644
|
* @memberof JsonApiWorkspaceOut
|
|
16624
16645
|
*/
|
|
16625
|
-
attributes?:
|
|
16646
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
16626
16647
|
/**
|
|
16627
16648
|
*
|
|
16628
|
-
* @type {
|
|
16649
|
+
* @type {JsonApiWorkspaceOutRelationships}
|
|
16629
16650
|
* @memberof JsonApiWorkspaceOut
|
|
16630
16651
|
*/
|
|
16631
|
-
relationships?:
|
|
16652
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
16632
16653
|
}
|
|
16633
16654
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
16634
16655
|
readonly WORKSPACE: "workspace";
|
|
16635
16656
|
};
|
|
16636
16657
|
export type JsonApiWorkspaceOutTypeEnum = typeof JsonApiWorkspaceOutTypeEnum[keyof typeof JsonApiWorkspaceOutTypeEnum];
|
|
16658
|
+
/**
|
|
16659
|
+
*
|
|
16660
|
+
* @export
|
|
16661
|
+
* @interface JsonApiWorkspaceOutAttributes
|
|
16662
|
+
*/
|
|
16663
|
+
export interface JsonApiWorkspaceOutAttributes {
|
|
16664
|
+
/**
|
|
16665
|
+
*
|
|
16666
|
+
* @type {string}
|
|
16667
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16668
|
+
*/
|
|
16669
|
+
name?: string | null;
|
|
16670
|
+
/**
|
|
16671
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
16672
|
+
* @type {string}
|
|
16673
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16674
|
+
* @deprecated
|
|
16675
|
+
*/
|
|
16676
|
+
earlyAccess?: string | null;
|
|
16677
|
+
/**
|
|
16678
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
16679
|
+
* @type {Array<string>}
|
|
16680
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16681
|
+
*/
|
|
16682
|
+
earlyAccessValues?: Array<string> | null;
|
|
16683
|
+
/**
|
|
16684
|
+
*
|
|
16685
|
+
* @type {string}
|
|
16686
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16687
|
+
*/
|
|
16688
|
+
description?: string | null;
|
|
16689
|
+
/**
|
|
16690
|
+
* Custom prefix of entity identifiers in workspace
|
|
16691
|
+
* @type {string}
|
|
16692
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16693
|
+
*/
|
|
16694
|
+
prefix?: string | null;
|
|
16695
|
+
/**
|
|
16696
|
+
*
|
|
16697
|
+
* @type {number}
|
|
16698
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16699
|
+
*/
|
|
16700
|
+
cacheExtraLimit?: number;
|
|
16701
|
+
/**
|
|
16702
|
+
*
|
|
16703
|
+
* @type {JsonApiWorkspaceOutAttributesDataSource}
|
|
16704
|
+
* @memberof JsonApiWorkspaceOutAttributes
|
|
16705
|
+
*/
|
|
16706
|
+
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
16707
|
+
}
|
|
16708
|
+
/**
|
|
16709
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
16710
|
+
* @export
|
|
16711
|
+
* @interface JsonApiWorkspaceOutAttributesDataSource
|
|
16712
|
+
*/
|
|
16713
|
+
export interface JsonApiWorkspaceOutAttributesDataSource {
|
|
16714
|
+
/**
|
|
16715
|
+
* The ID of the used data source.
|
|
16716
|
+
* @type {string}
|
|
16717
|
+
* @memberof JsonApiWorkspaceOutAttributesDataSource
|
|
16718
|
+
*/
|
|
16719
|
+
id: string;
|
|
16720
|
+
/**
|
|
16721
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
16722
|
+
* @type {Array<string>}
|
|
16723
|
+
* @memberof JsonApiWorkspaceOutAttributesDataSource
|
|
16724
|
+
*/
|
|
16725
|
+
schemaPath?: Array<string>;
|
|
16726
|
+
}
|
|
16637
16727
|
/**
|
|
16638
16728
|
*
|
|
16639
16729
|
* @export
|
|
@@ -16679,10 +16769,10 @@ export interface JsonApiWorkspaceOutList {
|
|
|
16679
16769
|
links?: ListLinks;
|
|
16680
16770
|
/**
|
|
16681
16771
|
*
|
|
16682
|
-
* @type {
|
|
16772
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
16683
16773
|
* @memberof JsonApiWorkspaceOutList
|
|
16684
16774
|
*/
|
|
16685
|
-
meta?:
|
|
16775
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
16686
16776
|
/**
|
|
16687
16777
|
* Included resources
|
|
16688
16778
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -16728,6 +16818,7 @@ export declare const JsonApiWorkspaceOutMetaPermissionsEnum: {
|
|
|
16728
16818
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
16729
16819
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
16730
16820
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
16821
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
16731
16822
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
16732
16823
|
readonly VIEW: "VIEW";
|
|
16733
16824
|
};
|
|
@@ -16783,6 +16874,32 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
|
|
|
16783
16874
|
*/
|
|
16784
16875
|
childrenCount: number;
|
|
16785
16876
|
}
|
|
16877
|
+
/**
|
|
16878
|
+
*
|
|
16879
|
+
* @export
|
|
16880
|
+
* @interface JsonApiWorkspaceOutRelationships
|
|
16881
|
+
*/
|
|
16882
|
+
export interface JsonApiWorkspaceOutRelationships {
|
|
16883
|
+
/**
|
|
16884
|
+
*
|
|
16885
|
+
* @type {JsonApiWorkspaceOutRelationshipsParent}
|
|
16886
|
+
* @memberof JsonApiWorkspaceOutRelationships
|
|
16887
|
+
*/
|
|
16888
|
+
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
16889
|
+
}
|
|
16890
|
+
/**
|
|
16891
|
+
*
|
|
16892
|
+
* @export
|
|
16893
|
+
* @interface JsonApiWorkspaceOutRelationshipsParent
|
|
16894
|
+
*/
|
|
16895
|
+
export interface JsonApiWorkspaceOutRelationshipsParent {
|
|
16896
|
+
/**
|
|
16897
|
+
*
|
|
16898
|
+
* @type {JsonApiWorkspaceToOneLinkage}
|
|
16899
|
+
* @memberof JsonApiWorkspaceOutRelationshipsParent
|
|
16900
|
+
*/
|
|
16901
|
+
data: JsonApiWorkspaceToOneLinkage | null;
|
|
16902
|
+
}
|
|
16786
16903
|
/**
|
|
16787
16904
|
*
|
|
16788
16905
|
* @export
|
|
@@ -16809,16 +16926,16 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
16809
16926
|
meta?: JsonApiWorkspaceOutMeta;
|
|
16810
16927
|
/**
|
|
16811
16928
|
*
|
|
16812
|
-
* @type {
|
|
16929
|
+
* @type {JsonApiWorkspaceOutAttributes}
|
|
16813
16930
|
* @memberof JsonApiWorkspaceOutWithLinks
|
|
16814
16931
|
*/
|
|
16815
|
-
attributes?:
|
|
16932
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
16816
16933
|
/**
|
|
16817
16934
|
*
|
|
16818
|
-
* @type {
|
|
16935
|
+
* @type {JsonApiWorkspaceOutRelationships}
|
|
16819
16936
|
* @memberof JsonApiWorkspaceOutWithLinks
|
|
16820
16937
|
*/
|
|
16821
|
-
relationships?:
|
|
16938
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
16822
16939
|
/**
|
|
16823
16940
|
*
|
|
16824
16941
|
* @type {ObjectLinks}
|
|
@@ -16850,90 +16967,21 @@ export interface JsonApiWorkspacePatch {
|
|
|
16850
16967
|
id: string;
|
|
16851
16968
|
/**
|
|
16852
16969
|
*
|
|
16853
|
-
* @type {
|
|
16970
|
+
* @type {JsonApiWorkspaceOutAttributes}
|
|
16854
16971
|
* @memberof JsonApiWorkspacePatch
|
|
16855
16972
|
*/
|
|
16856
|
-
attributes?:
|
|
16973
|
+
attributes?: JsonApiWorkspaceOutAttributes;
|
|
16857
16974
|
/**
|
|
16858
16975
|
*
|
|
16859
|
-
* @type {
|
|
16976
|
+
* @type {JsonApiWorkspaceOutRelationships}
|
|
16860
16977
|
* @memberof JsonApiWorkspacePatch
|
|
16861
16978
|
*/
|
|
16862
|
-
relationships?:
|
|
16979
|
+
relationships?: JsonApiWorkspaceOutRelationships;
|
|
16863
16980
|
}
|
|
16864
16981
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
16865
16982
|
readonly WORKSPACE: "workspace";
|
|
16866
16983
|
};
|
|
16867
16984
|
export type JsonApiWorkspacePatchTypeEnum = typeof JsonApiWorkspacePatchTypeEnum[keyof typeof JsonApiWorkspacePatchTypeEnum];
|
|
16868
|
-
/**
|
|
16869
|
-
*
|
|
16870
|
-
* @export
|
|
16871
|
-
* @interface JsonApiWorkspacePatchAttributes
|
|
16872
|
-
*/
|
|
16873
|
-
export interface JsonApiWorkspacePatchAttributes {
|
|
16874
|
-
/**
|
|
16875
|
-
*
|
|
16876
|
-
* @type {string}
|
|
16877
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16878
|
-
*/
|
|
16879
|
-
name?: string | null;
|
|
16880
|
-
/**
|
|
16881
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
16882
|
-
* @type {string}
|
|
16883
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16884
|
-
* @deprecated
|
|
16885
|
-
*/
|
|
16886
|
-
earlyAccess?: string | null;
|
|
16887
|
-
/**
|
|
16888
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
16889
|
-
* @type {Array<string>}
|
|
16890
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16891
|
-
*/
|
|
16892
|
-
earlyAccessValues?: Array<string> | null;
|
|
16893
|
-
/**
|
|
16894
|
-
*
|
|
16895
|
-
* @type {string}
|
|
16896
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16897
|
-
*/
|
|
16898
|
-
description?: string | null;
|
|
16899
|
-
/**
|
|
16900
|
-
* Custom prefix of entity identifiers in workspace
|
|
16901
|
-
* @type {string}
|
|
16902
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16903
|
-
*/
|
|
16904
|
-
prefix?: string | null;
|
|
16905
|
-
/**
|
|
16906
|
-
*
|
|
16907
|
-
* @type {number}
|
|
16908
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16909
|
-
*/
|
|
16910
|
-
cacheExtraLimit?: number;
|
|
16911
|
-
/**
|
|
16912
|
-
*
|
|
16913
|
-
* @type {JsonApiWorkspacePatchAttributesDataSource}
|
|
16914
|
-
* @memberof JsonApiWorkspacePatchAttributes
|
|
16915
|
-
*/
|
|
16916
|
-
dataSource?: JsonApiWorkspacePatchAttributesDataSource;
|
|
16917
|
-
}
|
|
16918
|
-
/**
|
|
16919
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
16920
|
-
* @export
|
|
16921
|
-
* @interface JsonApiWorkspacePatchAttributesDataSource
|
|
16922
|
-
*/
|
|
16923
|
-
export interface JsonApiWorkspacePatchAttributesDataSource {
|
|
16924
|
-
/**
|
|
16925
|
-
* The ID of the used data source.
|
|
16926
|
-
* @type {string}
|
|
16927
|
-
* @memberof JsonApiWorkspacePatchAttributesDataSource
|
|
16928
|
-
*/
|
|
16929
|
-
id: string;
|
|
16930
|
-
/**
|
|
16931
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
16932
|
-
* @type {Array<string>}
|
|
16933
|
-
* @memberof JsonApiWorkspacePatchAttributesDataSource
|
|
16934
|
-
*/
|
|
16935
|
-
schemaPath?: Array<string>;
|
|
16936
|
-
}
|
|
16937
16985
|
/**
|
|
16938
16986
|
*
|
|
16939
16987
|
* @export
|
|
@@ -16947,32 +16995,6 @@ export interface JsonApiWorkspacePatchDocument {
|
|
|
16947
16995
|
*/
|
|
16948
16996
|
data: JsonApiWorkspacePatch;
|
|
16949
16997
|
}
|
|
16950
|
-
/**
|
|
16951
|
-
*
|
|
16952
|
-
* @export
|
|
16953
|
-
* @interface JsonApiWorkspacePatchRelationships
|
|
16954
|
-
*/
|
|
16955
|
-
export interface JsonApiWorkspacePatchRelationships {
|
|
16956
|
-
/**
|
|
16957
|
-
*
|
|
16958
|
-
* @type {JsonApiWorkspacePatchRelationshipsParent}
|
|
16959
|
-
* @memberof JsonApiWorkspacePatchRelationships
|
|
16960
|
-
*/
|
|
16961
|
-
parent?: JsonApiWorkspacePatchRelationshipsParent;
|
|
16962
|
-
}
|
|
16963
|
-
/**
|
|
16964
|
-
*
|
|
16965
|
-
* @export
|
|
16966
|
-
* @interface JsonApiWorkspacePatchRelationshipsParent
|
|
16967
|
-
*/
|
|
16968
|
-
export interface JsonApiWorkspacePatchRelationshipsParent {
|
|
16969
|
-
/**
|
|
16970
|
-
*
|
|
16971
|
-
* @type {JsonApiWorkspaceToOneLinkage}
|
|
16972
|
-
* @memberof JsonApiWorkspacePatchRelationshipsParent
|
|
16973
|
-
*/
|
|
16974
|
-
data: JsonApiWorkspaceToOneLinkage | null;
|
|
16975
|
-
}
|
|
16976
16998
|
/**
|
|
16977
16999
|
* JSON:API representation of workspaceSetting entity.
|
|
16978
17000
|
* @export
|
|
@@ -16993,10 +17015,10 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
16993
17015
|
id: string;
|
|
16994
17016
|
/**
|
|
16995
17017
|
*
|
|
16996
|
-
* @type {
|
|
17018
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
16997
17019
|
* @memberof JsonApiWorkspaceSettingIn
|
|
16998
17020
|
*/
|
|
16999
|
-
attributes?:
|
|
17021
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
17000
17022
|
}
|
|
17001
17023
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
17002
17024
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17041,10 +17063,10 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
17041
17063
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17042
17064
|
/**
|
|
17043
17065
|
*
|
|
17044
|
-
* @type {
|
|
17066
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
17045
17067
|
* @memberof JsonApiWorkspaceSettingOut
|
|
17046
17068
|
*/
|
|
17047
|
-
attributes?:
|
|
17069
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
17048
17070
|
}
|
|
17049
17071
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
17050
17072
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17089,10 +17111,10 @@ export interface JsonApiWorkspaceSettingOutList {
|
|
|
17089
17111
|
links?: ListLinks;
|
|
17090
17112
|
/**
|
|
17091
17113
|
*
|
|
17092
|
-
* @type {
|
|
17114
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
17093
17115
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
17094
17116
|
*/
|
|
17095
|
-
meta?:
|
|
17117
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
17096
17118
|
}
|
|
17097
17119
|
/**
|
|
17098
17120
|
*
|
|
@@ -17120,10 +17142,10 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
17120
17142
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
17121
17143
|
/**
|
|
17122
17144
|
*
|
|
17123
|
-
* @type {
|
|
17145
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
17124
17146
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
17125
17147
|
*/
|
|
17126
|
-
attributes?:
|
|
17148
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
17127
17149
|
/**
|
|
17128
17150
|
*
|
|
17129
17151
|
* @type {ObjectLinks}
|
|
@@ -17155,10 +17177,10 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
17155
17177
|
id: string;
|
|
17156
17178
|
/**
|
|
17157
17179
|
*
|
|
17158
|
-
* @type {
|
|
17180
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
17159
17181
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
17160
17182
|
*/
|
|
17161
|
-
attributes?:
|
|
17183
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
17162
17184
|
}
|
|
17163
17185
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
17164
17186
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -17197,10 +17219,10 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
17197
17219
|
id?: string;
|
|
17198
17220
|
/**
|
|
17199
17221
|
*
|
|
17200
|
-
* @type {
|
|
17222
|
+
* @type {JsonApiUserSettingOutAttributes}
|
|
17201
17223
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
17202
17224
|
*/
|
|
17203
|
-
attributes?:
|
|
17225
|
+
attributes?: JsonApiUserSettingOutAttributes;
|
|
17204
17226
|
}
|
|
17205
17227
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
17206
17228
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -19276,6 +19298,7 @@ export declare const UserManagementWorkspacePermissionAssignmentPermissionsEnum:
|
|
|
19276
19298
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
19277
19299
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
19278
19300
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
19301
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
19279
19302
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
19280
19303
|
readonly VIEW: "VIEW";
|
|
19281
19304
|
};
|
|
@@ -19287,6 +19310,7 @@ export declare const UserManagementWorkspacePermissionAssignmentHierarchyPermiss
|
|
|
19287
19310
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
19288
19311
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
19289
19312
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
19313
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
19290
19314
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
19291
19315
|
readonly VIEW: "VIEW";
|
|
19292
19316
|
};
|
|
@@ -19547,6 +19571,7 @@ export declare const WorkspacePermissionAssignmentPermissionsEnum: {
|
|
|
19547
19571
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
19548
19572
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
19549
19573
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
19574
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
19550
19575
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
19551
19576
|
readonly VIEW: "VIEW";
|
|
19552
19577
|
};
|
|
@@ -19558,6 +19583,7 @@ export declare const WorkspacePermissionAssignmentHierarchyPermissionsEnum: {
|
|
|
19558
19583
|
readonly EXPORT_TABULAR: "EXPORT_TABULAR";
|
|
19559
19584
|
readonly EXPORT_PDF: "EXPORT_PDF";
|
|
19560
19585
|
readonly CREATE_AUTOMATION: "CREATE_AUTOMATION";
|
|
19586
|
+
readonly USE_AI_ASSISTANT: "USE_AI_ASSISTANT";
|
|
19561
19587
|
readonly CREATE_FILTER_VIEW: "CREATE_FILTER_VIEW";
|
|
19562
19588
|
readonly VIEW: "VIEW";
|
|
19563
19589
|
};
|