@gooddata/api-client-tiger 10.28.0-alpha.7 → 10.28.0-alpha.70
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 +1458 -884
- package/esm/generated/afm-rest-api/api.d.ts +129 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +136 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +48 -0
- package/esm/generated/automation-json-api/api.d.ts +84 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +3 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +69 -0
- package/esm/generated/export-json-api/api.d.ts +278 -11
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +54 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +215 -102
- package/esm/generated/metadata-json-api/api.d.ts +936 -857
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +31 -22
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8343 -8256
- package/esm/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/esm/metadataUtilities.d.ts +2 -1
- package/esm/metadataUtilities.d.ts.map +1 -1
- package/esm/metadataUtilities.js.map +1 -1
- package/package.json +4 -3
|
@@ -573,6 +573,19 @@ export interface AutomationExternalRecipient {
|
|
|
573
573
|
*/
|
|
574
574
|
email: string;
|
|
575
575
|
}
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @export
|
|
579
|
+
* @interface AutomationImageExport
|
|
580
|
+
*/
|
|
581
|
+
export interface AutomationImageExport {
|
|
582
|
+
/**
|
|
583
|
+
*
|
|
584
|
+
* @type {ImageExportRequest}
|
|
585
|
+
* @memberof AutomationImageExport
|
|
586
|
+
*/
|
|
587
|
+
requestPayload: ImageExportRequest;
|
|
588
|
+
}
|
|
576
589
|
/**
|
|
577
590
|
* Additional information for the automation.
|
|
578
591
|
* @export
|
|
@@ -1652,6 +1665,12 @@ export interface DeclarativeAutomation {
|
|
|
1652
1665
|
* @memberof DeclarativeAutomation
|
|
1653
1666
|
*/
|
|
1654
1667
|
visualExports?: Array<AutomationVisualExport>;
|
|
1668
|
+
/**
|
|
1669
|
+
*
|
|
1670
|
+
* @type {Array<AutomationImageExport>}
|
|
1671
|
+
* @memberof DeclarativeAutomation
|
|
1672
|
+
*/
|
|
1673
|
+
imageExports?: Array<AutomationImageExport>;
|
|
1655
1674
|
/**
|
|
1656
1675
|
* External recipients of the automation action results.
|
|
1657
1676
|
* @type {Array<AutomationExternalRecipient>}
|
|
@@ -3294,6 +3313,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
3294
3313
|
readonly TIMEZONE: "TIMEZONE";
|
|
3295
3314
|
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
3296
3315
|
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
3316
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
3297
3317
|
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
3298
3318
|
readonly LOCALE: "LOCALE";
|
|
3299
3319
|
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
@@ -3311,6 +3331,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
3311
3331
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
3312
3332
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
3313
3333
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
3334
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
3314
3335
|
};
|
|
3315
3336
|
export type DeclarativeSettingTypeEnum = typeof DeclarativeSettingTypeEnum[keyof typeof DeclarativeSettingTypeEnum];
|
|
3316
3337
|
/**
|
|
@@ -4619,6 +4640,47 @@ export declare const IdentifierDuplicationsTypeEnum: {
|
|
|
4619
4640
|
readonly WORKSPACE_DATA_FILTER_SETTINGS: "workspaceDataFilterSettings";
|
|
4620
4641
|
};
|
|
4621
4642
|
export type IdentifierDuplicationsTypeEnum = typeof IdentifierDuplicationsTypeEnum[keyof typeof IdentifierDuplicationsTypeEnum];
|
|
4643
|
+
/**
|
|
4644
|
+
* Export request object describing the export properties and metadata for image exports.
|
|
4645
|
+
* @export
|
|
4646
|
+
* @interface ImageExportRequest
|
|
4647
|
+
*/
|
|
4648
|
+
export interface ImageExportRequest {
|
|
4649
|
+
/**
|
|
4650
|
+
* Requested resulting file type.
|
|
4651
|
+
* @type {string}
|
|
4652
|
+
* @memberof ImageExportRequest
|
|
4653
|
+
*/
|
|
4654
|
+
format: ImageExportRequestFormatEnum;
|
|
4655
|
+
/**
|
|
4656
|
+
* File name to be used for retrieving the image document.
|
|
4657
|
+
* @type {string}
|
|
4658
|
+
* @memberof ImageExportRequest
|
|
4659
|
+
*/
|
|
4660
|
+
fileName: string;
|
|
4661
|
+
/**
|
|
4662
|
+
* Dashboard identifier
|
|
4663
|
+
* @type {string}
|
|
4664
|
+
* @memberof ImageExportRequest
|
|
4665
|
+
*/
|
|
4666
|
+
dashboardId: string;
|
|
4667
|
+
/**
|
|
4668
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
4669
|
+
* @type {Array<string>}
|
|
4670
|
+
* @memberof ImageExportRequest
|
|
4671
|
+
*/
|
|
4672
|
+
widgetIds?: Array<string>;
|
|
4673
|
+
/**
|
|
4674
|
+
* Free-form JSON object
|
|
4675
|
+
* @type {object}
|
|
4676
|
+
* @memberof ImageExportRequest
|
|
4677
|
+
*/
|
|
4678
|
+
metadata?: object | null;
|
|
4679
|
+
}
|
|
4680
|
+
export declare const ImageExportRequestFormatEnum: {
|
|
4681
|
+
readonly PNG: "PNG";
|
|
4682
|
+
};
|
|
4683
|
+
export type ImageExportRequestFormatEnum = typeof ImageExportRequestFormatEnum[keyof typeof ImageExportRequestFormatEnum];
|
|
4622
4684
|
/**
|
|
4623
4685
|
* In-platform destination for notifications.
|
|
4624
4686
|
* @export
|
|
@@ -5442,15 +5504,52 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
5442
5504
|
id: string;
|
|
5443
5505
|
/**
|
|
5444
5506
|
*
|
|
5445
|
-
* @type {
|
|
5507
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
5446
5508
|
* @memberof JsonApiAttributeHierarchyIn
|
|
5447
5509
|
*/
|
|
5448
|
-
attributes?:
|
|
5510
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
5449
5511
|
}
|
|
5450
5512
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
5451
5513
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
5452
5514
|
};
|
|
5453
5515
|
export type JsonApiAttributeHierarchyInTypeEnum = typeof JsonApiAttributeHierarchyInTypeEnum[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
5516
|
+
/**
|
|
5517
|
+
*
|
|
5518
|
+
* @export
|
|
5519
|
+
* @interface JsonApiAttributeHierarchyInAttributes
|
|
5520
|
+
*/
|
|
5521
|
+
export interface JsonApiAttributeHierarchyInAttributes {
|
|
5522
|
+
/**
|
|
5523
|
+
*
|
|
5524
|
+
* @type {string}
|
|
5525
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
5526
|
+
*/
|
|
5527
|
+
title?: string;
|
|
5528
|
+
/**
|
|
5529
|
+
*
|
|
5530
|
+
* @type {string}
|
|
5531
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
5532
|
+
*/
|
|
5533
|
+
description?: string;
|
|
5534
|
+
/**
|
|
5535
|
+
*
|
|
5536
|
+
* @type {Array<string>}
|
|
5537
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
5538
|
+
*/
|
|
5539
|
+
tags?: Array<string>;
|
|
5540
|
+
/**
|
|
5541
|
+
*
|
|
5542
|
+
* @type {boolean}
|
|
5543
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
5544
|
+
*/
|
|
5545
|
+
areRelationsValid?: boolean;
|
|
5546
|
+
/**
|
|
5547
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
5548
|
+
* @type {object}
|
|
5549
|
+
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
5550
|
+
*/
|
|
5551
|
+
content?: object;
|
|
5552
|
+
}
|
|
5454
5553
|
/**
|
|
5455
5554
|
*
|
|
5456
5555
|
* @export
|
|
@@ -5730,52 +5829,15 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
5730
5829
|
id: string;
|
|
5731
5830
|
/**
|
|
5732
5831
|
*
|
|
5733
|
-
* @type {
|
|
5832
|
+
* @type {JsonApiAttributeHierarchyInAttributes}
|
|
5734
5833
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
5735
5834
|
*/
|
|
5736
|
-
attributes?:
|
|
5835
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
5737
5836
|
}
|
|
5738
5837
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
5739
5838
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
5740
5839
|
};
|
|
5741
5840
|
export type JsonApiAttributeHierarchyPatchTypeEnum = typeof JsonApiAttributeHierarchyPatchTypeEnum[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
5742
|
-
/**
|
|
5743
|
-
*
|
|
5744
|
-
* @export
|
|
5745
|
-
* @interface JsonApiAttributeHierarchyPatchAttributes
|
|
5746
|
-
*/
|
|
5747
|
-
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
5748
|
-
/**
|
|
5749
|
-
*
|
|
5750
|
-
* @type {string}
|
|
5751
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
5752
|
-
*/
|
|
5753
|
-
title?: string;
|
|
5754
|
-
/**
|
|
5755
|
-
*
|
|
5756
|
-
* @type {string}
|
|
5757
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
5758
|
-
*/
|
|
5759
|
-
description?: string;
|
|
5760
|
-
/**
|
|
5761
|
-
*
|
|
5762
|
-
* @type {Array<string>}
|
|
5763
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
5764
|
-
*/
|
|
5765
|
-
tags?: Array<string>;
|
|
5766
|
-
/**
|
|
5767
|
-
*
|
|
5768
|
-
* @type {boolean}
|
|
5769
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
5770
|
-
*/
|
|
5771
|
-
areRelationsValid?: boolean;
|
|
5772
|
-
/**
|
|
5773
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
5774
|
-
* @type {object}
|
|
5775
|
-
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
5776
|
-
*/
|
|
5777
|
-
content?: object;
|
|
5778
|
-
}
|
|
5779
5841
|
/**
|
|
5780
5842
|
*
|
|
5781
5843
|
* @export
|
|
@@ -6151,21 +6213,111 @@ export interface JsonApiAutomationIn {
|
|
|
6151
6213
|
id: string;
|
|
6152
6214
|
/**
|
|
6153
6215
|
*
|
|
6154
|
-
* @type {
|
|
6216
|
+
* @type {JsonApiAutomationInAttributes}
|
|
6155
6217
|
* @memberof JsonApiAutomationIn
|
|
6156
6218
|
*/
|
|
6157
|
-
attributes?:
|
|
6219
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
6158
6220
|
/**
|
|
6159
6221
|
*
|
|
6160
|
-
* @type {
|
|
6222
|
+
* @type {JsonApiAutomationInRelationships}
|
|
6161
6223
|
* @memberof JsonApiAutomationIn
|
|
6162
6224
|
*/
|
|
6163
|
-
relationships?:
|
|
6225
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
6164
6226
|
}
|
|
6165
6227
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
6166
6228
|
readonly AUTOMATION: "automation";
|
|
6167
6229
|
};
|
|
6168
6230
|
export type JsonApiAutomationInTypeEnum = typeof JsonApiAutomationInTypeEnum[keyof typeof JsonApiAutomationInTypeEnum];
|
|
6231
|
+
/**
|
|
6232
|
+
*
|
|
6233
|
+
* @export
|
|
6234
|
+
* @interface JsonApiAutomationInAttributes
|
|
6235
|
+
*/
|
|
6236
|
+
export interface JsonApiAutomationInAttributes {
|
|
6237
|
+
/**
|
|
6238
|
+
*
|
|
6239
|
+
* @type {string}
|
|
6240
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6241
|
+
*/
|
|
6242
|
+
title?: string;
|
|
6243
|
+
/**
|
|
6244
|
+
*
|
|
6245
|
+
* @type {string}
|
|
6246
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6247
|
+
*/
|
|
6248
|
+
description?: string;
|
|
6249
|
+
/**
|
|
6250
|
+
*
|
|
6251
|
+
* @type {Array<string>}
|
|
6252
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6253
|
+
*/
|
|
6254
|
+
tags?: Array<string>;
|
|
6255
|
+
/**
|
|
6256
|
+
*
|
|
6257
|
+
* @type {boolean}
|
|
6258
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6259
|
+
*/
|
|
6260
|
+
areRelationsValid?: boolean;
|
|
6261
|
+
/**
|
|
6262
|
+
* Additional details to be included in the automated message.
|
|
6263
|
+
* @type {any}
|
|
6264
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6265
|
+
*/
|
|
6266
|
+
details?: any;
|
|
6267
|
+
/**
|
|
6268
|
+
*
|
|
6269
|
+
* @type {JsonApiAutomationOutAttributesMetadata}
|
|
6270
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6271
|
+
*/
|
|
6272
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
6273
|
+
/**
|
|
6274
|
+
* Current state of the automation.
|
|
6275
|
+
* @type {string}
|
|
6276
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6277
|
+
*/
|
|
6278
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
6279
|
+
/**
|
|
6280
|
+
*
|
|
6281
|
+
* @type {JsonApiAutomationOutAttributesSchedule}
|
|
6282
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6283
|
+
*/
|
|
6284
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
6285
|
+
/**
|
|
6286
|
+
*
|
|
6287
|
+
* @type {JsonApiAutomationOutAttributesAlert}
|
|
6288
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6289
|
+
*/
|
|
6290
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
6291
|
+
/**
|
|
6292
|
+
*
|
|
6293
|
+
* @type {Array<JsonApiAutomationOutAttributesTabularExports>}
|
|
6294
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6295
|
+
*/
|
|
6296
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
|
|
6297
|
+
/**
|
|
6298
|
+
*
|
|
6299
|
+
* @type {Array<JsonApiAutomationOutAttributesVisualExports>}
|
|
6300
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6301
|
+
*/
|
|
6302
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
|
|
6303
|
+
/**
|
|
6304
|
+
*
|
|
6305
|
+
* @type {Array<JsonApiAutomationOutAttributesImageExports>}
|
|
6306
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6307
|
+
*/
|
|
6308
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
|
|
6309
|
+
/**
|
|
6310
|
+
* External recipients of the automation action results.
|
|
6311
|
+
* @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
|
|
6312
|
+
* @memberof JsonApiAutomationInAttributes
|
|
6313
|
+
*/
|
|
6314
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
|
|
6315
|
+
}
|
|
6316
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
6317
|
+
readonly ACTIVE: "ACTIVE";
|
|
6318
|
+
readonly PAUSED: "PAUSED";
|
|
6319
|
+
};
|
|
6320
|
+
export type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
6169
6321
|
/**
|
|
6170
6322
|
*
|
|
6171
6323
|
* @export
|
|
@@ -6179,6 +6331,37 @@ export interface JsonApiAutomationInDocument {
|
|
|
6179
6331
|
*/
|
|
6180
6332
|
data: JsonApiAutomationIn;
|
|
6181
6333
|
}
|
|
6334
|
+
/**
|
|
6335
|
+
*
|
|
6336
|
+
* @export
|
|
6337
|
+
* @interface JsonApiAutomationInRelationships
|
|
6338
|
+
*/
|
|
6339
|
+
export interface JsonApiAutomationInRelationships {
|
|
6340
|
+
/**
|
|
6341
|
+
*
|
|
6342
|
+
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
6343
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6344
|
+
*/
|
|
6345
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
6346
|
+
/**
|
|
6347
|
+
*
|
|
6348
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
6349
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6350
|
+
*/
|
|
6351
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6352
|
+
/**
|
|
6353
|
+
*
|
|
6354
|
+
* @type {JsonApiAutomationOutRelationshipsExportDefinitions}
|
|
6355
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6356
|
+
*/
|
|
6357
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
6358
|
+
/**
|
|
6359
|
+
*
|
|
6360
|
+
* @type {JsonApiAutomationOutRelationshipsRecipients}
|
|
6361
|
+
* @memberof JsonApiAutomationInRelationships
|
|
6362
|
+
*/
|
|
6363
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
6364
|
+
}
|
|
6182
6365
|
/**
|
|
6183
6366
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6184
6367
|
* @export
|
|
@@ -6281,10 +6464,10 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6281
6464
|
details?: any;
|
|
6282
6465
|
/**
|
|
6283
6466
|
*
|
|
6284
|
-
* @type {
|
|
6467
|
+
* @type {JsonApiAutomationOutAttributesMetadata}
|
|
6285
6468
|
* @memberof JsonApiAutomationOutAttributes
|
|
6286
6469
|
*/
|
|
6287
|
-
metadata?:
|
|
6470
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
6288
6471
|
/**
|
|
6289
6472
|
* Current state of the automation.
|
|
6290
6473
|
* @type {string}
|
|
@@ -6293,34 +6476,40 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
6293
6476
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
6294
6477
|
/**
|
|
6295
6478
|
*
|
|
6296
|
-
* @type {
|
|
6479
|
+
* @type {JsonApiAutomationOutAttributesSchedule}
|
|
6480
|
+
* @memberof JsonApiAutomationOutAttributes
|
|
6481
|
+
*/
|
|
6482
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
6483
|
+
/**
|
|
6484
|
+
*
|
|
6485
|
+
* @type {JsonApiAutomationOutAttributesAlert}
|
|
6297
6486
|
* @memberof JsonApiAutomationOutAttributes
|
|
6298
6487
|
*/
|
|
6299
|
-
|
|
6488
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
6300
6489
|
/**
|
|
6301
6490
|
*
|
|
6302
|
-
* @type {
|
|
6491
|
+
* @type {Array<JsonApiAutomationOutAttributesTabularExports>}
|
|
6303
6492
|
* @memberof JsonApiAutomationOutAttributes
|
|
6304
6493
|
*/
|
|
6305
|
-
|
|
6494
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExports>;
|
|
6306
6495
|
/**
|
|
6307
6496
|
*
|
|
6308
|
-
* @type {Array<
|
|
6497
|
+
* @type {Array<JsonApiAutomationOutAttributesVisualExports>}
|
|
6309
6498
|
* @memberof JsonApiAutomationOutAttributes
|
|
6310
6499
|
*/
|
|
6311
|
-
|
|
6500
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExports>;
|
|
6312
6501
|
/**
|
|
6313
6502
|
*
|
|
6314
|
-
* @type {Array<
|
|
6503
|
+
* @type {Array<JsonApiAutomationOutAttributesImageExports>}
|
|
6315
6504
|
* @memberof JsonApiAutomationOutAttributes
|
|
6316
6505
|
*/
|
|
6317
|
-
|
|
6506
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExports>;
|
|
6318
6507
|
/**
|
|
6319
6508
|
* External recipients of the automation action results.
|
|
6320
|
-
* @type {Array<
|
|
6509
|
+
* @type {Array<JsonApiAutomationOutAttributesExternalRecipients>}
|
|
6321
6510
|
* @memberof JsonApiAutomationOutAttributes
|
|
6322
6511
|
*/
|
|
6323
|
-
externalRecipients?: Array<
|
|
6512
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipients>;
|
|
6324
6513
|
/**
|
|
6325
6514
|
*
|
|
6326
6515
|
* @type {string}
|
|
@@ -6342,487 +6531,372 @@ export type JsonApiAutomationOutAttributesStateEnum = typeof JsonApiAutomationOu
|
|
|
6342
6531
|
/**
|
|
6343
6532
|
*
|
|
6344
6533
|
* @export
|
|
6345
|
-
* @interface
|
|
6534
|
+
* @interface JsonApiAutomationOutAttributesAlert
|
|
6346
6535
|
*/
|
|
6347
|
-
export interface
|
|
6536
|
+
export interface JsonApiAutomationOutAttributesAlert {
|
|
6348
6537
|
/**
|
|
6349
6538
|
*
|
|
6350
|
-
* @type {
|
|
6351
|
-
* @memberof
|
|
6539
|
+
* @type {AlertAfm}
|
|
6540
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6352
6541
|
*/
|
|
6353
|
-
|
|
6542
|
+
execution: AlertAfm;
|
|
6354
6543
|
/**
|
|
6355
6544
|
*
|
|
6356
|
-
* @type {
|
|
6357
|
-
* @memberof
|
|
6545
|
+
* @type {AlertCondition}
|
|
6546
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6358
6547
|
*/
|
|
6359
|
-
|
|
6548
|
+
condition: AlertCondition;
|
|
6360
6549
|
/**
|
|
6361
|
-
*
|
|
6362
|
-
* @type {
|
|
6363
|
-
* @memberof
|
|
6550
|
+
* 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.
|
|
6551
|
+
* @type {string}
|
|
6552
|
+
* @memberof JsonApiAutomationOutAttributesAlert
|
|
6364
6553
|
*/
|
|
6365
|
-
|
|
6554
|
+
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
6366
6555
|
}
|
|
6556
|
+
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
6557
|
+
readonly ALWAYS: "ALWAYS";
|
|
6558
|
+
readonly ONCE: "ONCE";
|
|
6559
|
+
};
|
|
6560
|
+
export type JsonApiAutomationOutAttributesAlertTriggerEnum = typeof JsonApiAutomationOutAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
6367
6561
|
/**
|
|
6368
|
-
*
|
|
6562
|
+
*
|
|
6369
6563
|
* @export
|
|
6564
|
+
* @interface JsonApiAutomationOutAttributesExternalRecipients
|
|
6370
6565
|
*/
|
|
6371
|
-
export
|
|
6566
|
+
export interface JsonApiAutomationOutAttributesExternalRecipients {
|
|
6567
|
+
/**
|
|
6568
|
+
* E-mail address to send notifications from.
|
|
6569
|
+
* @type {string}
|
|
6570
|
+
* @memberof JsonApiAutomationOutAttributesExternalRecipients
|
|
6571
|
+
*/
|
|
6572
|
+
email: string;
|
|
6573
|
+
}
|
|
6372
6574
|
/**
|
|
6373
|
-
*
|
|
6575
|
+
*
|
|
6374
6576
|
* @export
|
|
6375
|
-
* @interface
|
|
6577
|
+
* @interface JsonApiAutomationOutAttributesImageExports
|
|
6376
6578
|
*/
|
|
6377
|
-
export interface
|
|
6579
|
+
export interface JsonApiAutomationOutAttributesImageExports {
|
|
6378
6580
|
/**
|
|
6379
6581
|
*
|
|
6380
|
-
* @type {
|
|
6381
|
-
* @memberof
|
|
6582
|
+
* @type {ImageExportRequest}
|
|
6583
|
+
* @memberof JsonApiAutomationOutAttributesImageExports
|
|
6382
6584
|
*/
|
|
6383
|
-
|
|
6585
|
+
requestPayload: ImageExportRequest;
|
|
6586
|
+
}
|
|
6587
|
+
/**
|
|
6588
|
+
* Additional information for the automation.
|
|
6589
|
+
* @export
|
|
6590
|
+
* @interface JsonApiAutomationOutAttributesMetadata
|
|
6591
|
+
*/
|
|
6592
|
+
export interface JsonApiAutomationOutAttributesMetadata {
|
|
6384
6593
|
/**
|
|
6385
6594
|
*
|
|
6386
|
-
* @type {
|
|
6387
|
-
* @memberof
|
|
6595
|
+
* @type {string}
|
|
6596
|
+
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6388
6597
|
*/
|
|
6389
|
-
|
|
6598
|
+
widget?: string;
|
|
6390
6599
|
/**
|
|
6391
6600
|
*
|
|
6392
|
-
* @type {
|
|
6393
|
-
* @memberof
|
|
6394
|
-
*/
|
|
6395
|
-
meta?: JsonApiApiTokenOutListMeta;
|
|
6396
|
-
/**
|
|
6397
|
-
* Included resources
|
|
6398
|
-
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6399
|
-
* @memberof JsonApiAutomationOutList
|
|
6601
|
+
* @type {Array<VisibleFilter>}
|
|
6602
|
+
* @memberof JsonApiAutomationOutAttributesMetadata
|
|
6400
6603
|
*/
|
|
6401
|
-
|
|
6604
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
6402
6605
|
}
|
|
6403
6606
|
/**
|
|
6404
6607
|
*
|
|
6405
6608
|
* @export
|
|
6406
|
-
* @interface
|
|
6609
|
+
* @interface JsonApiAutomationOutAttributesSchedule
|
|
6407
6610
|
*/
|
|
6408
|
-
export interface
|
|
6611
|
+
export interface JsonApiAutomationOutAttributesSchedule {
|
|
6409
6612
|
/**
|
|
6410
|
-
*
|
|
6411
|
-
* @type {
|
|
6412
|
-
* @memberof
|
|
6613
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
6614
|
+
* @type {string}
|
|
6615
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6413
6616
|
*/
|
|
6414
|
-
|
|
6617
|
+
cron: string;
|
|
6415
6618
|
/**
|
|
6416
|
-
*
|
|
6417
|
-
* @type {
|
|
6418
|
-
* @memberof
|
|
6619
|
+
* Human-readable description of the cron expression.
|
|
6620
|
+
* @type {string}
|
|
6621
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6419
6622
|
*/
|
|
6420
|
-
|
|
6623
|
+
cronDescription?: string;
|
|
6421
6624
|
/**
|
|
6422
|
-
*
|
|
6423
|
-
* @type {
|
|
6424
|
-
* @memberof
|
|
6625
|
+
* Timezone in which the schedule is defined.
|
|
6626
|
+
* @type {string}
|
|
6627
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6425
6628
|
*/
|
|
6426
|
-
|
|
6629
|
+
timezone: string;
|
|
6427
6630
|
/**
|
|
6428
|
-
*
|
|
6429
|
-
* @type {
|
|
6430
|
-
* @memberof
|
|
6431
|
-
*/
|
|
6432
|
-
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6433
|
-
/**
|
|
6434
|
-
*
|
|
6435
|
-
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
6436
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6437
|
-
*/
|
|
6438
|
-
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
6439
|
-
/**
|
|
6440
|
-
*
|
|
6441
|
-
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
6442
|
-
* @memberof JsonApiAutomationOutRelationships
|
|
6631
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
6632
|
+
* @type {string}
|
|
6633
|
+
* @memberof JsonApiAutomationOutAttributesSchedule
|
|
6443
6634
|
*/
|
|
6444
|
-
|
|
6635
|
+
firstRun?: string;
|
|
6445
6636
|
}
|
|
6446
6637
|
/**
|
|
6447
6638
|
*
|
|
6448
6639
|
* @export
|
|
6449
|
-
* @interface
|
|
6640
|
+
* @interface JsonApiAutomationOutAttributesTabularExports
|
|
6450
6641
|
*/
|
|
6451
|
-
export interface
|
|
6452
|
-
/**
|
|
6453
|
-
* Object type
|
|
6454
|
-
* @type {string}
|
|
6455
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6456
|
-
*/
|
|
6457
|
-
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
6458
|
-
/**
|
|
6459
|
-
* API identifier of an object
|
|
6460
|
-
* @type {string}
|
|
6461
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6462
|
-
*/
|
|
6463
|
-
id: string;
|
|
6642
|
+
export interface JsonApiAutomationOutAttributesTabularExports {
|
|
6464
6643
|
/**
|
|
6465
6644
|
*
|
|
6466
|
-
* @type {
|
|
6467
|
-
* @memberof
|
|
6468
|
-
*/
|
|
6469
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6470
|
-
/**
|
|
6471
|
-
*
|
|
6472
|
-
* @type {JsonApiAutomationOutAttributes}
|
|
6473
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6474
|
-
*/
|
|
6475
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
6476
|
-
/**
|
|
6477
|
-
*
|
|
6478
|
-
* @type {JsonApiAutomationOutRelationships}
|
|
6479
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6480
|
-
*/
|
|
6481
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
6482
|
-
/**
|
|
6483
|
-
*
|
|
6484
|
-
* @type {ObjectLinks}
|
|
6485
|
-
* @memberof JsonApiAutomationOutWithLinks
|
|
6645
|
+
* @type {TabularExportRequest}
|
|
6646
|
+
* @memberof JsonApiAutomationOutAttributesTabularExports
|
|
6486
6647
|
*/
|
|
6487
|
-
|
|
6648
|
+
requestPayload: TabularExportRequest;
|
|
6488
6649
|
}
|
|
6489
|
-
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
6490
|
-
readonly AUTOMATION: "automation";
|
|
6491
|
-
};
|
|
6492
|
-
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
6493
6650
|
/**
|
|
6494
|
-
*
|
|
6651
|
+
*
|
|
6495
6652
|
* @export
|
|
6496
|
-
* @interface
|
|
6653
|
+
* @interface JsonApiAutomationOutAttributesVisualExports
|
|
6497
6654
|
*/
|
|
6498
|
-
export interface
|
|
6499
|
-
/**
|
|
6500
|
-
* Object type
|
|
6501
|
-
* @type {string}
|
|
6502
|
-
* @memberof JsonApiAutomationPatch
|
|
6503
|
-
*/
|
|
6504
|
-
type: JsonApiAutomationPatchTypeEnum;
|
|
6505
|
-
/**
|
|
6506
|
-
* API identifier of an object
|
|
6507
|
-
* @type {string}
|
|
6508
|
-
* @memberof JsonApiAutomationPatch
|
|
6509
|
-
*/
|
|
6510
|
-
id: string;
|
|
6655
|
+
export interface JsonApiAutomationOutAttributesVisualExports {
|
|
6511
6656
|
/**
|
|
6512
6657
|
*
|
|
6513
|
-
* @type {
|
|
6514
|
-
* @memberof
|
|
6515
|
-
*/
|
|
6516
|
-
attributes?: JsonApiAutomationPatchAttributes;
|
|
6517
|
-
/**
|
|
6518
|
-
*
|
|
6519
|
-
* @type {JsonApiAutomationPatchRelationships}
|
|
6520
|
-
* @memberof JsonApiAutomationPatch
|
|
6658
|
+
* @type {VisualExportRequest}
|
|
6659
|
+
* @memberof JsonApiAutomationOutAttributesVisualExports
|
|
6521
6660
|
*/
|
|
6522
|
-
|
|
6661
|
+
requestPayload: VisualExportRequest;
|
|
6523
6662
|
}
|
|
6524
|
-
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
6525
|
-
readonly AUTOMATION: "automation";
|
|
6526
|
-
};
|
|
6527
|
-
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
6528
6663
|
/**
|
|
6529
6664
|
*
|
|
6530
6665
|
* @export
|
|
6531
|
-
* @interface
|
|
6666
|
+
* @interface JsonApiAutomationOutDocument
|
|
6532
6667
|
*/
|
|
6533
|
-
export interface
|
|
6534
|
-
/**
|
|
6535
|
-
*
|
|
6536
|
-
* @type {string}
|
|
6537
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
6538
|
-
*/
|
|
6539
|
-
title?: string;
|
|
6540
|
-
/**
|
|
6541
|
-
*
|
|
6542
|
-
* @type {string}
|
|
6543
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
6544
|
-
*/
|
|
6545
|
-
description?: string;
|
|
6546
|
-
/**
|
|
6547
|
-
*
|
|
6548
|
-
* @type {Array<string>}
|
|
6549
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
6550
|
-
*/
|
|
6551
|
-
tags?: Array<string>;
|
|
6668
|
+
export interface JsonApiAutomationOutDocument {
|
|
6552
6669
|
/**
|
|
6553
6670
|
*
|
|
6554
|
-
* @type {
|
|
6555
|
-
* @memberof
|
|
6556
|
-
*/
|
|
6557
|
-
areRelationsValid?: boolean;
|
|
6558
|
-
/**
|
|
6559
|
-
* Additional details to be included in the automated message.
|
|
6560
|
-
* @type {any}
|
|
6561
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
6671
|
+
* @type {JsonApiAutomationOut}
|
|
6672
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6562
6673
|
*/
|
|
6563
|
-
|
|
6674
|
+
data: JsonApiAutomationOut;
|
|
6564
6675
|
/**
|
|
6565
6676
|
*
|
|
6566
|
-
* @type {
|
|
6567
|
-
* @memberof
|
|
6568
|
-
*/
|
|
6569
|
-
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
6570
|
-
/**
|
|
6571
|
-
* Current state of the automation.
|
|
6572
|
-
* @type {string}
|
|
6573
|
-
* @memberof JsonApiAutomationPatchAttributes
|
|
6677
|
+
* @type {ObjectLinks}
|
|
6678
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6574
6679
|
*/
|
|
6575
|
-
|
|
6680
|
+
links?: ObjectLinks;
|
|
6576
6681
|
/**
|
|
6577
|
-
*
|
|
6578
|
-
* @type {
|
|
6579
|
-
* @memberof
|
|
6682
|
+
* Included resources
|
|
6683
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6684
|
+
* @memberof JsonApiAutomationOutDocument
|
|
6580
6685
|
*/
|
|
6581
|
-
|
|
6686
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
6687
|
+
}
|
|
6688
|
+
/**
|
|
6689
|
+
* @type JsonApiAutomationOutIncludes
|
|
6690
|
+
* @export
|
|
6691
|
+
*/
|
|
6692
|
+
export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiExportDefinitionOutWithLinks | JsonApiNotificationChannelOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiUserOutWithLinks;
|
|
6693
|
+
/**
|
|
6694
|
+
* A JSON:API document with a list of resources
|
|
6695
|
+
* @export
|
|
6696
|
+
* @interface JsonApiAutomationOutList
|
|
6697
|
+
*/
|
|
6698
|
+
export interface JsonApiAutomationOutList {
|
|
6582
6699
|
/**
|
|
6583
6700
|
*
|
|
6584
|
-
* @type {
|
|
6585
|
-
* @memberof
|
|
6701
|
+
* @type {Array<JsonApiAutomationOutWithLinks>}
|
|
6702
|
+
* @memberof JsonApiAutomationOutList
|
|
6586
6703
|
*/
|
|
6587
|
-
|
|
6704
|
+
data: Array<JsonApiAutomationOutWithLinks>;
|
|
6588
6705
|
/**
|
|
6589
6706
|
*
|
|
6590
|
-
* @type {
|
|
6591
|
-
* @memberof
|
|
6707
|
+
* @type {ListLinks}
|
|
6708
|
+
* @memberof JsonApiAutomationOutList
|
|
6592
6709
|
*/
|
|
6593
|
-
|
|
6710
|
+
links?: ListLinks;
|
|
6594
6711
|
/**
|
|
6595
6712
|
*
|
|
6596
|
-
* @type {
|
|
6597
|
-
* @memberof
|
|
6713
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
6714
|
+
* @memberof JsonApiAutomationOutList
|
|
6598
6715
|
*/
|
|
6599
|
-
|
|
6716
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
6600
6717
|
/**
|
|
6601
|
-
*
|
|
6602
|
-
* @type {Array<
|
|
6603
|
-
* @memberof
|
|
6718
|
+
* Included resources
|
|
6719
|
+
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
6720
|
+
* @memberof JsonApiAutomationOutList
|
|
6604
6721
|
*/
|
|
6605
|
-
|
|
6722
|
+
included?: Array<JsonApiAutomationOutIncludes>;
|
|
6606
6723
|
}
|
|
6607
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
6608
|
-
readonly ACTIVE: "ACTIVE";
|
|
6609
|
-
readonly PAUSED: "PAUSED";
|
|
6610
|
-
};
|
|
6611
|
-
export type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
6612
6724
|
/**
|
|
6613
6725
|
*
|
|
6614
6726
|
* @export
|
|
6615
|
-
* @interface
|
|
6727
|
+
* @interface JsonApiAutomationOutRelationships
|
|
6616
6728
|
*/
|
|
6617
|
-
export interface
|
|
6729
|
+
export interface JsonApiAutomationOutRelationships {
|
|
6618
6730
|
/**
|
|
6619
6731
|
*
|
|
6620
|
-
* @type {
|
|
6621
|
-
* @memberof
|
|
6732
|
+
* @type {JsonApiAutomationOutRelationshipsNotificationChannel}
|
|
6733
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6622
6734
|
*/
|
|
6623
|
-
|
|
6735
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
6624
6736
|
/**
|
|
6625
6737
|
*
|
|
6626
|
-
* @type {
|
|
6627
|
-
* @memberof
|
|
6738
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
6739
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6628
6740
|
*/
|
|
6629
|
-
|
|
6741
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6630
6742
|
/**
|
|
6631
|
-
*
|
|
6632
|
-
* @type {
|
|
6633
|
-
* @memberof
|
|
6743
|
+
*
|
|
6744
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
6745
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6634
6746
|
*/
|
|
6635
|
-
|
|
6636
|
-
}
|
|
6637
|
-
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
6638
|
-
readonly ALWAYS: "ALWAYS";
|
|
6639
|
-
readonly ONCE: "ONCE";
|
|
6640
|
-
};
|
|
6641
|
-
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
6642
|
-
/**
|
|
6643
|
-
*
|
|
6644
|
-
* @export
|
|
6645
|
-
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
6646
|
-
*/
|
|
6647
|
-
export interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
6747
|
+
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6648
6748
|
/**
|
|
6649
|
-
*
|
|
6650
|
-
* @type {
|
|
6651
|
-
* @memberof
|
|
6749
|
+
*
|
|
6750
|
+
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
6751
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6652
6752
|
*/
|
|
6653
|
-
|
|
6654
|
-
}
|
|
6655
|
-
/**
|
|
6656
|
-
* Additional information for the automation.
|
|
6657
|
-
* @export
|
|
6658
|
-
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
6659
|
-
*/
|
|
6660
|
-
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
6753
|
+
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
6661
6754
|
/**
|
|
6662
6755
|
*
|
|
6663
|
-
* @type {
|
|
6664
|
-
* @memberof
|
|
6756
|
+
* @type {JsonApiAutomationOutRelationshipsExportDefinitions}
|
|
6757
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6665
6758
|
*/
|
|
6666
|
-
|
|
6759
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
6667
6760
|
/**
|
|
6668
6761
|
*
|
|
6669
|
-
* @type {
|
|
6670
|
-
* @memberof
|
|
6762
|
+
* @type {JsonApiAutomationOutRelationshipsRecipients}
|
|
6763
|
+
* @memberof JsonApiAutomationOutRelationships
|
|
6671
6764
|
*/
|
|
6672
|
-
|
|
6765
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
6673
6766
|
}
|
|
6674
6767
|
/**
|
|
6675
6768
|
*
|
|
6676
6769
|
* @export
|
|
6677
|
-
* @interface
|
|
6770
|
+
* @interface JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6678
6771
|
*/
|
|
6679
|
-
export interface
|
|
6680
|
-
/**
|
|
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.
|
|
6682
|
-
* @type {string}
|
|
6683
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6684
|
-
*/
|
|
6685
|
-
cron: string;
|
|
6686
|
-
/**
|
|
6687
|
-
* Human-readable description of the cron expression.
|
|
6688
|
-
* @type {string}
|
|
6689
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6690
|
-
*/
|
|
6691
|
-
cronDescription?: string;
|
|
6692
|
-
/**
|
|
6693
|
-
* Timezone in which the schedule is defined.
|
|
6694
|
-
* @type {string}
|
|
6695
|
-
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
6696
|
-
*/
|
|
6697
|
-
timezone: string;
|
|
6772
|
+
export interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
6698
6773
|
/**
|
|
6699
|
-
*
|
|
6700
|
-
* @type {
|
|
6701
|
-
* @memberof
|
|
6774
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6775
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
6776
|
+
* @memberof JsonApiAutomationOutRelationshipsExportDefinitions
|
|
6702
6777
|
*/
|
|
6703
|
-
|
|
6778
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
6704
6779
|
}
|
|
6705
6780
|
/**
|
|
6706
6781
|
*
|
|
6707
6782
|
* @export
|
|
6708
|
-
* @interface
|
|
6783
|
+
* @interface JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6709
6784
|
*/
|
|
6710
|
-
export interface
|
|
6785
|
+
export interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
6711
6786
|
/**
|
|
6712
6787
|
*
|
|
6713
|
-
* @type {
|
|
6714
|
-
* @memberof
|
|
6788
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
6789
|
+
* @memberof JsonApiAutomationOutRelationshipsNotificationChannel
|
|
6715
6790
|
*/
|
|
6716
|
-
|
|
6791
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
6717
6792
|
}
|
|
6718
6793
|
/**
|
|
6719
6794
|
*
|
|
6720
6795
|
* @export
|
|
6721
|
-
* @interface
|
|
6796
|
+
* @interface JsonApiAutomationOutRelationshipsRecipients
|
|
6722
6797
|
*/
|
|
6723
|
-
export interface
|
|
6798
|
+
export interface JsonApiAutomationOutRelationshipsRecipients {
|
|
6724
6799
|
/**
|
|
6725
|
-
*
|
|
6726
|
-
* @type {
|
|
6727
|
-
* @memberof
|
|
6800
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
6801
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
6802
|
+
* @memberof JsonApiAutomationOutRelationshipsRecipients
|
|
6728
6803
|
*/
|
|
6729
|
-
|
|
6804
|
+
data: Array<JsonApiUserLinkage>;
|
|
6730
6805
|
}
|
|
6731
6806
|
/**
|
|
6732
6807
|
*
|
|
6733
6808
|
* @export
|
|
6734
|
-
* @interface
|
|
6809
|
+
* @interface JsonApiAutomationOutWithLinks
|
|
6735
6810
|
*/
|
|
6736
|
-
export interface
|
|
6811
|
+
export interface JsonApiAutomationOutWithLinks {
|
|
6737
6812
|
/**
|
|
6738
|
-
*
|
|
6739
|
-
* @type {
|
|
6740
|
-
* @memberof
|
|
6813
|
+
* Object type
|
|
6814
|
+
* @type {string}
|
|
6815
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6741
6816
|
*/
|
|
6742
|
-
|
|
6743
|
-
}
|
|
6744
|
-
/**
|
|
6745
|
-
*
|
|
6746
|
-
* @export
|
|
6747
|
-
* @interface JsonApiAutomationPatchRelationships
|
|
6748
|
-
*/
|
|
6749
|
-
export interface JsonApiAutomationPatchRelationships {
|
|
6817
|
+
type: JsonApiAutomationOutWithLinksTypeEnum;
|
|
6750
6818
|
/**
|
|
6751
|
-
*
|
|
6752
|
-
* @type {
|
|
6753
|
-
* @memberof
|
|
6819
|
+
* API identifier of an object
|
|
6820
|
+
* @type {string}
|
|
6821
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6754
6822
|
*/
|
|
6755
|
-
|
|
6823
|
+
id: string;
|
|
6756
6824
|
/**
|
|
6757
6825
|
*
|
|
6758
|
-
* @type {
|
|
6759
|
-
* @memberof
|
|
6826
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
6827
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6760
6828
|
*/
|
|
6761
|
-
|
|
6829
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6762
6830
|
/**
|
|
6763
6831
|
*
|
|
6764
|
-
* @type {
|
|
6765
|
-
* @memberof
|
|
6832
|
+
* @type {JsonApiAutomationOutAttributes}
|
|
6833
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6766
6834
|
*/
|
|
6767
|
-
|
|
6835
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
6768
6836
|
/**
|
|
6769
6837
|
*
|
|
6770
|
-
* @type {
|
|
6771
|
-
* @memberof
|
|
6838
|
+
* @type {JsonApiAutomationOutRelationships}
|
|
6839
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6772
6840
|
*/
|
|
6773
|
-
|
|
6774
|
-
}
|
|
6775
|
-
/**
|
|
6776
|
-
*
|
|
6777
|
-
* @export
|
|
6778
|
-
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
6779
|
-
*/
|
|
6780
|
-
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
6841
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
6781
6842
|
/**
|
|
6782
6843
|
*
|
|
6783
|
-
* @type {
|
|
6784
|
-
* @memberof
|
|
6844
|
+
* @type {ObjectLinks}
|
|
6845
|
+
* @memberof JsonApiAutomationOutWithLinks
|
|
6785
6846
|
*/
|
|
6786
|
-
|
|
6847
|
+
links?: ObjectLinks;
|
|
6787
6848
|
}
|
|
6849
|
+
export declare const JsonApiAutomationOutWithLinksTypeEnum: {
|
|
6850
|
+
readonly AUTOMATION: "automation";
|
|
6851
|
+
};
|
|
6852
|
+
export type JsonApiAutomationOutWithLinksTypeEnum = typeof JsonApiAutomationOutWithLinksTypeEnum[keyof typeof JsonApiAutomationOutWithLinksTypeEnum];
|
|
6788
6853
|
/**
|
|
6789
|
-
*
|
|
6854
|
+
* JSON:API representation of patching automation entity.
|
|
6790
6855
|
* @export
|
|
6791
|
-
* @interface
|
|
6856
|
+
* @interface JsonApiAutomationPatch
|
|
6792
6857
|
*/
|
|
6793
|
-
export interface
|
|
6858
|
+
export interface JsonApiAutomationPatch {
|
|
6794
6859
|
/**
|
|
6795
|
-
*
|
|
6796
|
-
* @type {
|
|
6797
|
-
* @memberof
|
|
6860
|
+
* Object type
|
|
6861
|
+
* @type {string}
|
|
6862
|
+
* @memberof JsonApiAutomationPatch
|
|
6798
6863
|
*/
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
6864
|
+
type: JsonApiAutomationPatchTypeEnum;
|
|
6865
|
+
/**
|
|
6866
|
+
* API identifier of an object
|
|
6867
|
+
* @type {string}
|
|
6868
|
+
* @memberof JsonApiAutomationPatch
|
|
6869
|
+
*/
|
|
6870
|
+
id: string;
|
|
6807
6871
|
/**
|
|
6808
6872
|
*
|
|
6809
|
-
* @type {
|
|
6810
|
-
* @memberof
|
|
6873
|
+
* @type {JsonApiAutomationInAttributes}
|
|
6874
|
+
* @memberof JsonApiAutomationPatch
|
|
6811
6875
|
*/
|
|
6812
|
-
|
|
6876
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
6877
|
+
/**
|
|
6878
|
+
*
|
|
6879
|
+
* @type {JsonApiAutomationInRelationships}
|
|
6880
|
+
* @memberof JsonApiAutomationPatch
|
|
6881
|
+
*/
|
|
6882
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
6813
6883
|
}
|
|
6884
|
+
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
6885
|
+
readonly AUTOMATION: "automation";
|
|
6886
|
+
};
|
|
6887
|
+
export type JsonApiAutomationPatchTypeEnum = typeof JsonApiAutomationPatchTypeEnum[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
6814
6888
|
/**
|
|
6815
6889
|
*
|
|
6816
6890
|
* @export
|
|
6817
|
-
* @interface
|
|
6891
|
+
* @interface JsonApiAutomationPatchDocument
|
|
6818
6892
|
*/
|
|
6819
|
-
export interface
|
|
6893
|
+
export interface JsonApiAutomationPatchDocument {
|
|
6820
6894
|
/**
|
|
6821
|
-
*
|
|
6822
|
-
* @type {
|
|
6823
|
-
* @memberof
|
|
6895
|
+
*
|
|
6896
|
+
* @type {JsonApiAutomationPatch}
|
|
6897
|
+
* @memberof JsonApiAutomationPatchDocument
|
|
6824
6898
|
*/
|
|
6825
|
-
data:
|
|
6899
|
+
data: JsonApiAutomationPatch;
|
|
6826
6900
|
}
|
|
6827
6901
|
/**
|
|
6828
6902
|
* @type JsonApiAutomationToOneLinkage
|
|
@@ -7080,10 +7154,10 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
7080
7154
|
id: string;
|
|
7081
7155
|
/**
|
|
7082
7156
|
*
|
|
7083
|
-
* @type {
|
|
7157
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7084
7158
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
7085
7159
|
*/
|
|
7086
|
-
attributes?:
|
|
7160
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7087
7161
|
}
|
|
7088
7162
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
7089
7163
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -7122,34 +7196,15 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
7122
7196
|
id: string;
|
|
7123
7197
|
/**
|
|
7124
7198
|
*
|
|
7125
|
-
* @type {
|
|
7199
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7126
7200
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
7127
7201
|
*/
|
|
7128
|
-
attributes?:
|
|
7202
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7129
7203
|
}
|
|
7130
7204
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
7131
7205
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7132
7206
|
};
|
|
7133
7207
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = typeof JsonApiCookieSecurityConfigurationOutTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationOutTypeEnum];
|
|
7134
|
-
/**
|
|
7135
|
-
*
|
|
7136
|
-
* @export
|
|
7137
|
-
* @interface JsonApiCookieSecurityConfigurationOutAttributes
|
|
7138
|
-
*/
|
|
7139
|
-
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
7140
|
-
/**
|
|
7141
|
-
*
|
|
7142
|
-
* @type {string}
|
|
7143
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7144
|
-
*/
|
|
7145
|
-
lastRotation?: string;
|
|
7146
|
-
/**
|
|
7147
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7148
|
-
* @type {string}
|
|
7149
|
-
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
7150
|
-
*/
|
|
7151
|
-
rotationInterval?: string;
|
|
7152
|
-
}
|
|
7153
7208
|
/**
|
|
7154
7209
|
*
|
|
7155
7210
|
* @export
|
|
@@ -7189,15 +7244,34 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
7189
7244
|
id: string;
|
|
7190
7245
|
/**
|
|
7191
7246
|
*
|
|
7192
|
-
* @type {
|
|
7247
|
+
* @type {JsonApiCookieSecurityConfigurationPatchAttributes}
|
|
7193
7248
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
7194
7249
|
*/
|
|
7195
|
-
attributes?:
|
|
7250
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
7196
7251
|
}
|
|
7197
7252
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
7198
7253
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
7199
7254
|
};
|
|
7200
7255
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = typeof JsonApiCookieSecurityConfigurationPatchTypeEnum[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
7256
|
+
/**
|
|
7257
|
+
*
|
|
7258
|
+
* @export
|
|
7259
|
+
* @interface JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7260
|
+
*/
|
|
7261
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
7262
|
+
/**
|
|
7263
|
+
*
|
|
7264
|
+
* @type {string}
|
|
7265
|
+
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7266
|
+
*/
|
|
7267
|
+
lastRotation?: string;
|
|
7268
|
+
/**
|
|
7269
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
7270
|
+
* @type {string}
|
|
7271
|
+
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
7272
|
+
*/
|
|
7273
|
+
rotationInterval?: string;
|
|
7274
|
+
}
|
|
7201
7275
|
/**
|
|
7202
7276
|
*
|
|
7203
7277
|
* @export
|
|
@@ -7733,10 +7807,10 @@ export interface JsonApiDashboardPluginIn {
|
|
|
7733
7807
|
id: string;
|
|
7734
7808
|
/**
|
|
7735
7809
|
*
|
|
7736
|
-
* @type {
|
|
7810
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
7737
7811
|
* @memberof JsonApiDashboardPluginIn
|
|
7738
7812
|
*/
|
|
7739
|
-
attributes?:
|
|
7813
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
7740
7814
|
}
|
|
7741
7815
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
7742
7816
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -8010,52 +8084,15 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
8010
8084
|
id: string;
|
|
8011
8085
|
/**
|
|
8012
8086
|
*
|
|
8013
|
-
* @type {
|
|
8087
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
8014
8088
|
* @memberof JsonApiDashboardPluginPatch
|
|
8015
8089
|
*/
|
|
8016
|
-
attributes?:
|
|
8090
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
8017
8091
|
}
|
|
8018
8092
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
8019
8093
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8020
8094
|
};
|
|
8021
8095
|
export type JsonApiDashboardPluginPatchTypeEnum = typeof JsonApiDashboardPluginPatchTypeEnum[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
8022
|
-
/**
|
|
8023
|
-
*
|
|
8024
|
-
* @export
|
|
8025
|
-
* @interface JsonApiDashboardPluginPatchAttributes
|
|
8026
|
-
*/
|
|
8027
|
-
export interface JsonApiDashboardPluginPatchAttributes {
|
|
8028
|
-
/**
|
|
8029
|
-
*
|
|
8030
|
-
* @type {string}
|
|
8031
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8032
|
-
*/
|
|
8033
|
-
title?: string;
|
|
8034
|
-
/**
|
|
8035
|
-
*
|
|
8036
|
-
* @type {string}
|
|
8037
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8038
|
-
*/
|
|
8039
|
-
description?: string;
|
|
8040
|
-
/**
|
|
8041
|
-
*
|
|
8042
|
-
* @type {Array<string>}
|
|
8043
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8044
|
-
*/
|
|
8045
|
-
tags?: Array<string>;
|
|
8046
|
-
/**
|
|
8047
|
-
*
|
|
8048
|
-
* @type {boolean}
|
|
8049
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8050
|
-
*/
|
|
8051
|
-
areRelationsValid?: boolean;
|
|
8052
|
-
/**
|
|
8053
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8054
|
-
* @type {object}
|
|
8055
|
-
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
8056
|
-
*/
|
|
8057
|
-
content?: object;
|
|
8058
|
-
}
|
|
8059
8096
|
/**
|
|
8060
8097
|
*
|
|
8061
8098
|
* @export
|
|
@@ -8089,15 +8126,52 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
8089
8126
|
id?: string;
|
|
8090
8127
|
/**
|
|
8091
8128
|
*
|
|
8092
|
-
* @type {
|
|
8129
|
+
* @type {JsonApiDashboardPluginPostOptionalIdAttributes}
|
|
8093
8130
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
8094
8131
|
*/
|
|
8095
|
-
attributes?:
|
|
8132
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
8096
8133
|
}
|
|
8097
8134
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
8098
8135
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
8099
8136
|
};
|
|
8100
8137
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = typeof JsonApiDashboardPluginPostOptionalIdTypeEnum[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
8138
|
+
/**
|
|
8139
|
+
*
|
|
8140
|
+
* @export
|
|
8141
|
+
* @interface JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8142
|
+
*/
|
|
8143
|
+
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
8144
|
+
/**
|
|
8145
|
+
*
|
|
8146
|
+
* @type {string}
|
|
8147
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8148
|
+
*/
|
|
8149
|
+
title?: string;
|
|
8150
|
+
/**
|
|
8151
|
+
*
|
|
8152
|
+
* @type {string}
|
|
8153
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8154
|
+
*/
|
|
8155
|
+
description?: string;
|
|
8156
|
+
/**
|
|
8157
|
+
*
|
|
8158
|
+
* @type {Array<string>}
|
|
8159
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8160
|
+
*/
|
|
8161
|
+
tags?: Array<string>;
|
|
8162
|
+
/**
|
|
8163
|
+
*
|
|
8164
|
+
* @type {boolean}
|
|
8165
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8166
|
+
*/
|
|
8167
|
+
areRelationsValid?: boolean;
|
|
8168
|
+
/**
|
|
8169
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8170
|
+
* @type {object}
|
|
8171
|
+
* @memberof JsonApiDashboardPluginPostOptionalIdAttributes
|
|
8172
|
+
*/
|
|
8173
|
+
content?: object;
|
|
8174
|
+
}
|
|
8101
8175
|
/**
|
|
8102
8176
|
*
|
|
8103
8177
|
* @export
|
|
@@ -9472,16 +9546,16 @@ export interface JsonApiExportDefinitionIn {
|
|
|
9472
9546
|
id: string;
|
|
9473
9547
|
/**
|
|
9474
9548
|
*
|
|
9475
|
-
* @type {
|
|
9549
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
9476
9550
|
* @memberof JsonApiExportDefinitionIn
|
|
9477
9551
|
*/
|
|
9478
|
-
attributes?:
|
|
9552
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
9479
9553
|
/**
|
|
9480
9554
|
*
|
|
9481
|
-
* @type {
|
|
9555
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
9482
9556
|
* @memberof JsonApiExportDefinitionIn
|
|
9483
9557
|
*/
|
|
9484
|
-
relationships?:
|
|
9558
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
9485
9559
|
}
|
|
9486
9560
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
9487
9561
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -9688,10 +9762,10 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9688
9762
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9689
9763
|
/**
|
|
9690
9764
|
*
|
|
9691
|
-
* @type {
|
|
9765
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
9692
9766
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
9693
9767
|
*/
|
|
9694
|
-
analyticalDashboard?:
|
|
9768
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
9695
9769
|
/**
|
|
9696
9770
|
*
|
|
9697
9771
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -9711,6 +9785,19 @@ export interface JsonApiExportDefinitionOutRelationships {
|
|
|
9711
9785
|
*/
|
|
9712
9786
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
9713
9787
|
}
|
|
9788
|
+
/**
|
|
9789
|
+
*
|
|
9790
|
+
* @export
|
|
9791
|
+
* @interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9792
|
+
*/
|
|
9793
|
+
export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
9794
|
+
/**
|
|
9795
|
+
*
|
|
9796
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
9797
|
+
* @memberof JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard
|
|
9798
|
+
*/
|
|
9799
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
9800
|
+
}
|
|
9714
9801
|
/**
|
|
9715
9802
|
*
|
|
9716
9803
|
* @export
|
|
@@ -9804,58 +9891,21 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
9804
9891
|
id: string;
|
|
9805
9892
|
/**
|
|
9806
9893
|
*
|
|
9807
|
-
* @type {
|
|
9894
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
9808
9895
|
* @memberof JsonApiExportDefinitionPatch
|
|
9809
9896
|
*/
|
|
9810
|
-
attributes?:
|
|
9897
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
9811
9898
|
/**
|
|
9812
9899
|
*
|
|
9813
|
-
* @type {
|
|
9900
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
9814
9901
|
* @memberof JsonApiExportDefinitionPatch
|
|
9815
9902
|
*/
|
|
9816
|
-
relationships?:
|
|
9903
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
9817
9904
|
}
|
|
9818
9905
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
9819
9906
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
9820
9907
|
};
|
|
9821
9908
|
export type JsonApiExportDefinitionPatchTypeEnum = typeof JsonApiExportDefinitionPatchTypeEnum[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
9822
|
-
/**
|
|
9823
|
-
*
|
|
9824
|
-
* @export
|
|
9825
|
-
* @interface JsonApiExportDefinitionPatchAttributes
|
|
9826
|
-
*/
|
|
9827
|
-
export interface JsonApiExportDefinitionPatchAttributes {
|
|
9828
|
-
/**
|
|
9829
|
-
*
|
|
9830
|
-
* @type {string}
|
|
9831
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
9832
|
-
*/
|
|
9833
|
-
title?: string;
|
|
9834
|
-
/**
|
|
9835
|
-
*
|
|
9836
|
-
* @type {string}
|
|
9837
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
9838
|
-
*/
|
|
9839
|
-
description?: string;
|
|
9840
|
-
/**
|
|
9841
|
-
*
|
|
9842
|
-
* @type {Array<string>}
|
|
9843
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
9844
|
-
*/
|
|
9845
|
-
tags?: Array<string>;
|
|
9846
|
-
/**
|
|
9847
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
9848
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
9849
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
9850
|
-
*/
|
|
9851
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
9852
|
-
/**
|
|
9853
|
-
*
|
|
9854
|
-
* @type {boolean}
|
|
9855
|
-
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
9856
|
-
*/
|
|
9857
|
-
areRelationsValid?: boolean;
|
|
9858
|
-
}
|
|
9859
9909
|
/**
|
|
9860
9910
|
*
|
|
9861
9911
|
* @export
|
|
@@ -9869,25 +9919,6 @@ export interface JsonApiExportDefinitionPatchDocument {
|
|
|
9869
9919
|
*/
|
|
9870
9920
|
data: JsonApiExportDefinitionPatch;
|
|
9871
9921
|
}
|
|
9872
|
-
/**
|
|
9873
|
-
*
|
|
9874
|
-
* @export
|
|
9875
|
-
* @interface JsonApiExportDefinitionPatchRelationships
|
|
9876
|
-
*/
|
|
9877
|
-
export interface JsonApiExportDefinitionPatchRelationships {
|
|
9878
|
-
/**
|
|
9879
|
-
*
|
|
9880
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
9881
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
9882
|
-
*/
|
|
9883
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
9884
|
-
/**
|
|
9885
|
-
*
|
|
9886
|
-
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
9887
|
-
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
9888
|
-
*/
|
|
9889
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
9890
|
-
}
|
|
9891
9922
|
/**
|
|
9892
9923
|
* JSON:API representation of exportDefinition entity.
|
|
9893
9924
|
* @export
|
|
@@ -9908,21 +9939,58 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
9908
9939
|
id?: string;
|
|
9909
9940
|
/**
|
|
9910
9941
|
*
|
|
9911
|
-
* @type {
|
|
9942
|
+
* @type {JsonApiExportDefinitionPostOptionalIdAttributes}
|
|
9912
9943
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
9913
9944
|
*/
|
|
9914
|
-
attributes?:
|
|
9945
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
9915
9946
|
/**
|
|
9916
9947
|
*
|
|
9917
|
-
* @type {
|
|
9948
|
+
* @type {JsonApiExportDefinitionPostOptionalIdRelationships}
|
|
9918
9949
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
9919
9950
|
*/
|
|
9920
|
-
relationships?:
|
|
9951
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
9921
9952
|
}
|
|
9922
9953
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
9923
9954
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
9924
9955
|
};
|
|
9925
9956
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = typeof JsonApiExportDefinitionPostOptionalIdTypeEnum[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
9957
|
+
/**
|
|
9958
|
+
*
|
|
9959
|
+
* @export
|
|
9960
|
+
* @interface JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9961
|
+
*/
|
|
9962
|
+
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {string}
|
|
9966
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9967
|
+
*/
|
|
9968
|
+
title?: string;
|
|
9969
|
+
/**
|
|
9970
|
+
*
|
|
9971
|
+
* @type {string}
|
|
9972
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9973
|
+
*/
|
|
9974
|
+
description?: string;
|
|
9975
|
+
/**
|
|
9976
|
+
*
|
|
9977
|
+
* @type {Array<string>}
|
|
9978
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9979
|
+
*/
|
|
9980
|
+
tags?: Array<string>;
|
|
9981
|
+
/**
|
|
9982
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
9983
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
9984
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9985
|
+
*/
|
|
9986
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
9987
|
+
/**
|
|
9988
|
+
*
|
|
9989
|
+
* @type {boolean}
|
|
9990
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdAttributes
|
|
9991
|
+
*/
|
|
9992
|
+
areRelationsValid?: boolean;
|
|
9993
|
+
}
|
|
9926
9994
|
/**
|
|
9927
9995
|
*
|
|
9928
9996
|
* @export
|
|
@@ -9936,6 +10004,25 @@ export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
|
9936
10004
|
*/
|
|
9937
10005
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
9938
10006
|
}
|
|
10007
|
+
/**
|
|
10008
|
+
*
|
|
10009
|
+
* @export
|
|
10010
|
+
* @interface JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10011
|
+
*/
|
|
10012
|
+
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
10013
|
+
/**
|
|
10014
|
+
*
|
|
10015
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
10016
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10017
|
+
*/
|
|
10018
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
10019
|
+
/**
|
|
10020
|
+
*
|
|
10021
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
10022
|
+
* @memberof JsonApiExportDefinitionPostOptionalIdRelationships
|
|
10023
|
+
*/
|
|
10024
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
10025
|
+
}
|
|
9939
10026
|
/**
|
|
9940
10027
|
* JSON:API representation of exportTemplate entity.
|
|
9941
10028
|
* @export
|
|
@@ -10905,10 +10992,10 @@ export interface JsonApiFilterViewIn {
|
|
|
10905
10992
|
attributes: JsonApiFilterViewOutAttributes;
|
|
10906
10993
|
/**
|
|
10907
10994
|
*
|
|
10908
|
-
* @type {
|
|
10995
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
10909
10996
|
* @memberof JsonApiFilterViewIn
|
|
10910
10997
|
*/
|
|
10911
|
-
relationships?:
|
|
10998
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
10912
10999
|
}
|
|
10913
11000
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
10914
11001
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -10953,10 +11040,10 @@ export interface JsonApiFilterViewOut {
|
|
|
10953
11040
|
attributes: JsonApiFilterViewOutAttributes;
|
|
10954
11041
|
/**
|
|
10955
11042
|
*
|
|
10956
|
-
* @type {
|
|
11043
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
10957
11044
|
* @memberof JsonApiFilterViewOut
|
|
10958
11045
|
*/
|
|
10959
|
-
relationships?:
|
|
11046
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
10960
11047
|
}
|
|
10961
11048
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
10962
11049
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11066,6 +11153,25 @@ export interface JsonApiFilterViewOutList {
|
|
|
11066
11153
|
*/
|
|
11067
11154
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
11068
11155
|
}
|
|
11156
|
+
/**
|
|
11157
|
+
*
|
|
11158
|
+
* @export
|
|
11159
|
+
* @interface JsonApiFilterViewOutRelationships
|
|
11160
|
+
*/
|
|
11161
|
+
export interface JsonApiFilterViewOutRelationships {
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @type {JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard}
|
|
11165
|
+
* @memberof JsonApiFilterViewOutRelationships
|
|
11166
|
+
*/
|
|
11167
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
11168
|
+
/**
|
|
11169
|
+
*
|
|
11170
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
11171
|
+
* @memberof JsonApiFilterViewOutRelationships
|
|
11172
|
+
*/
|
|
11173
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
11174
|
+
}
|
|
11069
11175
|
/**
|
|
11070
11176
|
*
|
|
11071
11177
|
* @export
|
|
@@ -11092,10 +11198,10 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
11092
11198
|
attributes: JsonApiFilterViewOutAttributes;
|
|
11093
11199
|
/**
|
|
11094
11200
|
*
|
|
11095
|
-
* @type {
|
|
11201
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11096
11202
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
11097
11203
|
*/
|
|
11098
|
-
relationships?:
|
|
11204
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11099
11205
|
/**
|
|
11100
11206
|
*
|
|
11101
11207
|
* @type {ObjectLinks}
|
|
@@ -11133,10 +11239,10 @@ export interface JsonApiFilterViewPatch {
|
|
|
11133
11239
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
11134
11240
|
/**
|
|
11135
11241
|
*
|
|
11136
|
-
* @type {
|
|
11242
|
+
* @type {JsonApiFilterViewOutRelationships}
|
|
11137
11243
|
* @memberof JsonApiFilterViewPatch
|
|
11138
11244
|
*/
|
|
11139
|
-
relationships?:
|
|
11245
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
11140
11246
|
}
|
|
11141
11247
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
11142
11248
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -11198,38 +11304,6 @@ export interface JsonApiFilterViewPatchDocument {
|
|
|
11198
11304
|
*/
|
|
11199
11305
|
data: JsonApiFilterViewPatch;
|
|
11200
11306
|
}
|
|
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
|
-
}
|
|
11233
11307
|
/**
|
|
11234
11308
|
* JSON:API representation of identityProvider entity.
|
|
11235
11309
|
* @export
|
|
@@ -12100,12 +12174,6 @@ export interface JsonApiLlmEndpointInAttributes {
|
|
|
12100
12174
|
* @memberof JsonApiLlmEndpointInAttributes
|
|
12101
12175
|
*/
|
|
12102
12176
|
llmModel?: string;
|
|
12103
|
-
/**
|
|
12104
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
12105
|
-
* @type {Array<string>}
|
|
12106
|
-
* @memberof JsonApiLlmEndpointInAttributes
|
|
12107
|
-
*/
|
|
12108
|
-
workspaceIds?: Array<string>;
|
|
12109
12177
|
}
|
|
12110
12178
|
export declare const JsonApiLlmEndpointInAttributesProviderEnum: {
|
|
12111
12179
|
readonly OPENAI: "OPENAI";
|
|
@@ -12195,12 +12263,6 @@ export interface JsonApiLlmEndpointOutAttributes {
|
|
|
12195
12263
|
* @memberof JsonApiLlmEndpointOutAttributes
|
|
12196
12264
|
*/
|
|
12197
12265
|
llmModel?: string;
|
|
12198
|
-
/**
|
|
12199
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
12200
|
-
* @type {Array<string>}
|
|
12201
|
-
* @memberof JsonApiLlmEndpointOutAttributes
|
|
12202
|
-
*/
|
|
12203
|
-
workspaceIds?: Array<string>;
|
|
12204
12266
|
}
|
|
12205
12267
|
export declare const JsonApiLlmEndpointOutAttributesProviderEnum: {
|
|
12206
12268
|
readonly OPENAI: "OPENAI";
|
|
@@ -12362,12 +12424,6 @@ export interface JsonApiLlmEndpointPatchAttributes {
|
|
|
12362
12424
|
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
12363
12425
|
*/
|
|
12364
12426
|
llmModel?: string;
|
|
12365
|
-
/**
|
|
12366
|
-
* List of workspace IDs for which LLM endpoint is valid. If empty, it is valid for all workspaces.
|
|
12367
|
-
* @type {Array<string>}
|
|
12368
|
-
* @memberof JsonApiLlmEndpointPatchAttributes
|
|
12369
|
-
*/
|
|
12370
|
-
workspaceIds?: Array<string>;
|
|
12371
12427
|
}
|
|
12372
12428
|
export declare const JsonApiLlmEndpointPatchAttributesProviderEnum: {
|
|
12373
12429
|
readonly OPENAI: "OPENAI";
|
|
@@ -12846,81 +12902,15 @@ export interface JsonApiNotificationChannelIn {
|
|
|
12846
12902
|
id: string;
|
|
12847
12903
|
/**
|
|
12848
12904
|
*
|
|
12849
|
-
* @type {
|
|
12905
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
12850
12906
|
* @memberof JsonApiNotificationChannelIn
|
|
12851
12907
|
*/
|
|
12852
|
-
attributes?:
|
|
12908
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
12853
12909
|
}
|
|
12854
12910
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
12855
12911
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
12856
12912
|
};
|
|
12857
12913
|
export type JsonApiNotificationChannelInTypeEnum = typeof JsonApiNotificationChannelInTypeEnum[keyof typeof JsonApiNotificationChannelInTypeEnum];
|
|
12858
|
-
/**
|
|
12859
|
-
*
|
|
12860
|
-
* @export
|
|
12861
|
-
* @interface JsonApiNotificationChannelInAttributes
|
|
12862
|
-
*/
|
|
12863
|
-
export interface JsonApiNotificationChannelInAttributes {
|
|
12864
|
-
/**
|
|
12865
|
-
*
|
|
12866
|
-
* @type {string}
|
|
12867
|
-
* @memberof JsonApiNotificationChannelInAttributes
|
|
12868
|
-
*/
|
|
12869
|
-
name?: string | null;
|
|
12870
|
-
/**
|
|
12871
|
-
*
|
|
12872
|
-
* @type {string}
|
|
12873
|
-
* @memberof JsonApiNotificationChannelInAttributes
|
|
12874
|
-
*/
|
|
12875
|
-
description?: string | null;
|
|
12876
|
-
/**
|
|
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
12914
|
/**
|
|
12925
12915
|
*
|
|
12926
12916
|
* @export
|
|
@@ -13164,10 +13154,10 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
13164
13154
|
id: string;
|
|
13165
13155
|
/**
|
|
13166
13156
|
*
|
|
13167
|
-
* @type {
|
|
13157
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
13168
13158
|
* @memberof JsonApiNotificationChannelPatch
|
|
13169
13159
|
*/
|
|
13170
|
-
attributes?:
|
|
13160
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
13171
13161
|
}
|
|
13172
13162
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
13173
13163
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13206,10 +13196,10 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
13206
13196
|
id?: string;
|
|
13207
13197
|
/**
|
|
13208
13198
|
*
|
|
13209
|
-
* @type {
|
|
13199
|
+
* @type {JsonApiNotificationChannelPostOptionalIdAttributes}
|
|
13210
13200
|
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
13211
13201
|
*/
|
|
13212
|
-
attributes?:
|
|
13202
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
13213
13203
|
}
|
|
13214
13204
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
13215
13205
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -13218,133 +13208,117 @@ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = typeof JsonApiNot
|
|
|
13218
13208
|
/**
|
|
13219
13209
|
*
|
|
13220
13210
|
* @export
|
|
13221
|
-
* @interface
|
|
13211
|
+
* @interface JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13222
13212
|
*/
|
|
13223
|
-
export interface
|
|
13213
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
13224
13214
|
/**
|
|
13225
13215
|
*
|
|
13226
|
-
* @type {JsonApiNotificationChannelPostOptionalId}
|
|
13227
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdDocument
|
|
13228
|
-
*/
|
|
13229
|
-
data: JsonApiNotificationChannelPostOptionalId;
|
|
13230
|
-
}
|
|
13231
|
-
/**
|
|
13232
|
-
* @type JsonApiNotificationChannelToOneLinkage
|
|
13233
|
-
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
13234
|
-
* @export
|
|
13235
|
-
*/
|
|
13236
|
-
export type JsonApiNotificationChannelToOneLinkage = JsonApiNotificationChannelLinkage;
|
|
13237
|
-
/**
|
|
13238
|
-
* JSON:API representation of organization entity.
|
|
13239
|
-
* @export
|
|
13240
|
-
* @interface JsonApiOrganizationIn
|
|
13241
|
-
*/
|
|
13242
|
-
export interface JsonApiOrganizationIn {
|
|
13243
|
-
/**
|
|
13244
|
-
* Object type
|
|
13245
13216
|
* @type {string}
|
|
13246
|
-
* @memberof
|
|
13217
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13247
13218
|
*/
|
|
13248
|
-
|
|
13219
|
+
name?: string | null;
|
|
13249
13220
|
/**
|
|
13250
|
-
*
|
|
13221
|
+
*
|
|
13251
13222
|
* @type {string}
|
|
13252
|
-
* @memberof
|
|
13223
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13253
13224
|
*/
|
|
13254
|
-
|
|
13225
|
+
description?: string | null;
|
|
13255
13226
|
/**
|
|
13256
|
-
*
|
|
13257
|
-
* @type {
|
|
13258
|
-
* @memberof
|
|
13227
|
+
* The destination where the notifications are to be sent.
|
|
13228
|
+
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
13229
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13259
13230
|
*/
|
|
13260
|
-
|
|
13261
|
-
}
|
|
13262
|
-
export declare const JsonApiOrganizationInTypeEnum: {
|
|
13263
|
-
readonly ORGANIZATION: "organization";
|
|
13264
|
-
};
|
|
13265
|
-
export type JsonApiOrganizationInTypeEnum = typeof JsonApiOrganizationInTypeEnum[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
13266
|
-
/**
|
|
13267
|
-
*
|
|
13268
|
-
* @export
|
|
13269
|
-
* @interface JsonApiOrganizationInAttributes
|
|
13270
|
-
*/
|
|
13271
|
-
export interface JsonApiOrganizationInAttributes {
|
|
13231
|
+
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
13272
13232
|
/**
|
|
13273
|
-
*
|
|
13233
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are {workspaceId}, {dashboardId}.
|
|
13274
13234
|
* @type {string}
|
|
13275
|
-
* @memberof
|
|
13235
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13276
13236
|
*/
|
|
13277
|
-
|
|
13237
|
+
customDashboardUrl?: string;
|
|
13278
13238
|
/**
|
|
13279
|
-
*
|
|
13239
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
13280
13240
|
* @type {string}
|
|
13281
|
-
* @memberof
|
|
13282
|
-
*/
|
|
13283
|
-
hostname?: string;
|
|
13284
|
-
/**
|
|
13285
|
-
*
|
|
13286
|
-
* @type {Array<string>}
|
|
13287
|
-
* @memberof JsonApiOrganizationInAttributes
|
|
13241
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13288
13242
|
*/
|
|
13289
|
-
|
|
13243
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
13290
13244
|
/**
|
|
13291
|
-
*
|
|
13245
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
13292
13246
|
* @type {string}
|
|
13293
|
-
* @memberof
|
|
13247
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13294
13248
|
*/
|
|
13295
|
-
|
|
13249
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
13296
13250
|
/**
|
|
13297
|
-
*
|
|
13251
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
13298
13252
|
* @type {string}
|
|
13299
|
-
* @memberof
|
|
13253
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
13300
13254
|
*/
|
|
13301
|
-
|
|
13255
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
13256
|
+
}
|
|
13257
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
13258
|
+
readonly HIDDEN: "HIDDEN";
|
|
13259
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
13260
|
+
readonly ALL: "ALL";
|
|
13261
|
+
};
|
|
13262
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
13263
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
13264
|
+
readonly CREATOR: "CREATOR";
|
|
13265
|
+
readonly INTERNAL: "INTERNAL";
|
|
13266
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
13267
|
+
};
|
|
13268
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
13269
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
13270
|
+
readonly DISABLED: "DISABLED";
|
|
13271
|
+
readonly ENABLED: "ENABLED";
|
|
13272
|
+
};
|
|
13273
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
13274
|
+
/**
|
|
13275
|
+
*
|
|
13276
|
+
* @export
|
|
13277
|
+
* @interface JsonApiNotificationChannelPostOptionalIdDocument
|
|
13278
|
+
*/
|
|
13279
|
+
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
13302
13280
|
/**
|
|
13303
13281
|
*
|
|
13304
|
-
* @type {
|
|
13305
|
-
* @memberof
|
|
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
|
|
13282
|
+
* @type {JsonApiNotificationChannelPostOptionalId}
|
|
13283
|
+
* @memberof JsonApiNotificationChannelPostOptionalIdDocument
|
|
13319
13284
|
*/
|
|
13320
|
-
|
|
13285
|
+
data: JsonApiNotificationChannelPostOptionalId;
|
|
13286
|
+
}
|
|
13287
|
+
/**
|
|
13288
|
+
* @type JsonApiNotificationChannelToOneLinkage
|
|
13289
|
+
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
13290
|
+
* @export
|
|
13291
|
+
*/
|
|
13292
|
+
export type JsonApiNotificationChannelToOneLinkage = JsonApiNotificationChannelLinkage;
|
|
13293
|
+
/**
|
|
13294
|
+
* JSON:API representation of organization entity.
|
|
13295
|
+
* @export
|
|
13296
|
+
* @interface JsonApiOrganizationIn
|
|
13297
|
+
*/
|
|
13298
|
+
export interface JsonApiOrganizationIn {
|
|
13321
13299
|
/**
|
|
13322
|
-
*
|
|
13300
|
+
* Object type
|
|
13323
13301
|
* @type {string}
|
|
13324
|
-
* @memberof
|
|
13302
|
+
* @memberof JsonApiOrganizationIn
|
|
13325
13303
|
*/
|
|
13326
|
-
|
|
13304
|
+
type: JsonApiOrganizationInTypeEnum;
|
|
13327
13305
|
/**
|
|
13328
|
-
*
|
|
13306
|
+
* API identifier of an object
|
|
13329
13307
|
* @type {string}
|
|
13330
|
-
* @memberof
|
|
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
|
|
13308
|
+
* @memberof JsonApiOrganizationIn
|
|
13337
13309
|
*/
|
|
13338
|
-
|
|
13339
|
-
[key: string]: string;
|
|
13340
|
-
};
|
|
13310
|
+
id: string;
|
|
13341
13311
|
/**
|
|
13342
|
-
*
|
|
13343
|
-
* @type {
|
|
13344
|
-
* @memberof
|
|
13312
|
+
*
|
|
13313
|
+
* @type {JsonApiOrganizationPatchAttributes}
|
|
13314
|
+
* @memberof JsonApiOrganizationIn
|
|
13345
13315
|
*/
|
|
13346
|
-
|
|
13316
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
13347
13317
|
}
|
|
13318
|
+
export declare const JsonApiOrganizationInTypeEnum: {
|
|
13319
|
+
readonly ORGANIZATION: "organization";
|
|
13320
|
+
};
|
|
13321
|
+
export type JsonApiOrganizationInTypeEnum = typeof JsonApiOrganizationInTypeEnum[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
13348
13322
|
/**
|
|
13349
13323
|
*
|
|
13350
13324
|
* @export
|
|
@@ -13561,16 +13535,42 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOrganizati
|
|
|
13561
13535
|
export interface JsonApiOrganizationOutRelationships {
|
|
13562
13536
|
/**
|
|
13563
13537
|
*
|
|
13564
|
-
* @type {
|
|
13538
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
13565
13539
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13566
13540
|
*/
|
|
13567
|
-
bootstrapUser?:
|
|
13541
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
13568
13542
|
/**
|
|
13569
13543
|
*
|
|
13570
|
-
* @type {
|
|
13544
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
13571
13545
|
* @memberof JsonApiOrganizationOutRelationships
|
|
13572
13546
|
*/
|
|
13573
|
-
bootstrapUserGroup?:
|
|
13547
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
13548
|
+
}
|
|
13549
|
+
/**
|
|
13550
|
+
*
|
|
13551
|
+
* @export
|
|
13552
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
13553
|
+
*/
|
|
13554
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
13555
|
+
/**
|
|
13556
|
+
*
|
|
13557
|
+
* @type {JsonApiUserToOneLinkage}
|
|
13558
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
13559
|
+
*/
|
|
13560
|
+
data: JsonApiUserToOneLinkage | null;
|
|
13561
|
+
}
|
|
13562
|
+
/**
|
|
13563
|
+
*
|
|
13564
|
+
* @export
|
|
13565
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
13566
|
+
*/
|
|
13567
|
+
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
13568
|
+
/**
|
|
13569
|
+
*
|
|
13570
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
13571
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
13572
|
+
*/
|
|
13573
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
13574
13574
|
}
|
|
13575
13575
|
/**
|
|
13576
13576
|
* JSON:API representation of patching organization entity.
|
|
@@ -13592,15 +13592,97 @@ export interface JsonApiOrganizationPatch {
|
|
|
13592
13592
|
id: string;
|
|
13593
13593
|
/**
|
|
13594
13594
|
*
|
|
13595
|
-
* @type {
|
|
13595
|
+
* @type {JsonApiOrganizationPatchAttributes}
|
|
13596
13596
|
* @memberof JsonApiOrganizationPatch
|
|
13597
13597
|
*/
|
|
13598
|
-
attributes?:
|
|
13598
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
13599
13599
|
}
|
|
13600
13600
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
13601
13601
|
readonly ORGANIZATION: "organization";
|
|
13602
13602
|
};
|
|
13603
13603
|
export type JsonApiOrganizationPatchTypeEnum = typeof JsonApiOrganizationPatchTypeEnum[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
13604
|
+
/**
|
|
13605
|
+
*
|
|
13606
|
+
* @export
|
|
13607
|
+
* @interface JsonApiOrganizationPatchAttributes
|
|
13608
|
+
*/
|
|
13609
|
+
export interface JsonApiOrganizationPatchAttributes {
|
|
13610
|
+
/**
|
|
13611
|
+
*
|
|
13612
|
+
* @type {string}
|
|
13613
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13614
|
+
*/
|
|
13615
|
+
name?: string | null;
|
|
13616
|
+
/**
|
|
13617
|
+
*
|
|
13618
|
+
* @type {string}
|
|
13619
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13620
|
+
*/
|
|
13621
|
+
hostname?: string;
|
|
13622
|
+
/**
|
|
13623
|
+
*
|
|
13624
|
+
* @type {Array<string>}
|
|
13625
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13626
|
+
*/
|
|
13627
|
+
allowedOrigins?: Array<string>;
|
|
13628
|
+
/**
|
|
13629
|
+
*
|
|
13630
|
+
* @type {string}
|
|
13631
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13632
|
+
*/
|
|
13633
|
+
oauthIssuerLocation?: string;
|
|
13634
|
+
/**
|
|
13635
|
+
*
|
|
13636
|
+
* @type {string}
|
|
13637
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13638
|
+
*/
|
|
13639
|
+
oauthClientId?: string;
|
|
13640
|
+
/**
|
|
13641
|
+
*
|
|
13642
|
+
* @type {string}
|
|
13643
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13644
|
+
*/
|
|
13645
|
+
oauthClientSecret?: string;
|
|
13646
|
+
/**
|
|
13647
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
13648
|
+
* @type {string}
|
|
13649
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13650
|
+
* @deprecated
|
|
13651
|
+
*/
|
|
13652
|
+
earlyAccess?: string | null;
|
|
13653
|
+
/**
|
|
13654
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
13655
|
+
* @type {Array<string>}
|
|
13656
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13657
|
+
*/
|
|
13658
|
+
earlyAccessValues?: Array<string> | null;
|
|
13659
|
+
/**
|
|
13660
|
+
* 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.
|
|
13661
|
+
* @type {string}
|
|
13662
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13663
|
+
*/
|
|
13664
|
+
oauthIssuerId?: string;
|
|
13665
|
+
/**
|
|
13666
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
13667
|
+
* @type {string}
|
|
13668
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13669
|
+
*/
|
|
13670
|
+
oauthSubjectIdClaim?: string;
|
|
13671
|
+
/**
|
|
13672
|
+
* 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.
|
|
13673
|
+
* @type {{ [key: string]: string; }}
|
|
13674
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13675
|
+
*/
|
|
13676
|
+
oauthCustomAuthAttributes?: {
|
|
13677
|
+
[key: string]: string;
|
|
13678
|
+
};
|
|
13679
|
+
/**
|
|
13680
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
13681
|
+
* @type {Array<string>}
|
|
13682
|
+
* @memberof JsonApiOrganizationPatchAttributes
|
|
13683
|
+
*/
|
|
13684
|
+
oauthCustomScopes?: Array<string> | null;
|
|
13685
|
+
}
|
|
13604
13686
|
/**
|
|
13605
13687
|
*
|
|
13606
13688
|
* @export
|
|
@@ -14024,10 +14106,10 @@ export interface JsonApiUserDataFilterIn {
|
|
|
14024
14106
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
14025
14107
|
/**
|
|
14026
14108
|
*
|
|
14027
|
-
* @type {
|
|
14109
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
14028
14110
|
* @memberof JsonApiUserDataFilterIn
|
|
14029
14111
|
*/
|
|
14030
|
-
relationships?:
|
|
14112
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
14031
14113
|
}
|
|
14032
14114
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
14033
14115
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -14193,16 +14275,16 @@ export interface JsonApiUserDataFilterOutList {
|
|
|
14193
14275
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
14194
14276
|
/**
|
|
14195
14277
|
*
|
|
14196
|
-
* @type {
|
|
14278
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
14197
14279
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14198
14280
|
*/
|
|
14199
|
-
user?:
|
|
14281
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
14200
14282
|
/**
|
|
14201
14283
|
*
|
|
14202
|
-
* @type {
|
|
14284
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
14203
14285
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
14204
14286
|
*/
|
|
14205
|
-
userGroup?:
|
|
14287
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14206
14288
|
/**
|
|
14207
14289
|
*
|
|
14208
14290
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -14307,10 +14389,10 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
14307
14389
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
14308
14390
|
/**
|
|
14309
14391
|
*
|
|
14310
|
-
* @type {
|
|
14392
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
14311
14393
|
* @memberof JsonApiUserDataFilterPatch
|
|
14312
14394
|
*/
|
|
14313
|
-
relationships?:
|
|
14395
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
14314
14396
|
}
|
|
14315
14397
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
14316
14398
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -14366,38 +14448,6 @@ export interface JsonApiUserDataFilterPatchDocument {
|
|
|
14366
14448
|
*/
|
|
14367
14449
|
data: JsonApiUserDataFilterPatch;
|
|
14368
14450
|
}
|
|
14369
|
-
/**
|
|
14370
|
-
*
|
|
14371
|
-
* @export
|
|
14372
|
-
* @interface JsonApiUserDataFilterPatchRelationships
|
|
14373
|
-
*/
|
|
14374
|
-
export interface JsonApiUserDataFilterPatchRelationships {
|
|
14375
|
-
/**
|
|
14376
|
-
*
|
|
14377
|
-
* @type {JsonApiFilterViewPatchRelationshipsUser}
|
|
14378
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
14379
|
-
*/
|
|
14380
|
-
user?: JsonApiFilterViewPatchRelationshipsUser;
|
|
14381
|
-
/**
|
|
14382
|
-
*
|
|
14383
|
-
* @type {JsonApiUserDataFilterPatchRelationshipsUserGroup}
|
|
14384
|
-
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
14385
|
-
*/
|
|
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;
|
|
14400
|
-
}
|
|
14401
14451
|
/**
|
|
14402
14452
|
* JSON:API representation of userDataFilter entity.
|
|
14403
14453
|
* @export
|
|
@@ -14424,10 +14474,10 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
14424
14474
|
attributes: JsonApiUserDataFilterOutAttributes;
|
|
14425
14475
|
/**
|
|
14426
14476
|
*
|
|
14427
|
-
* @type {
|
|
14477
|
+
* @type {JsonApiUserDataFilterPostOptionalIdRelationships}
|
|
14428
14478
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
14429
14479
|
*/
|
|
14430
|
-
relationships?:
|
|
14480
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
14431
14481
|
}
|
|
14432
14482
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
14433
14483
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -14446,6 +14496,25 @@ export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
14446
14496
|
*/
|
|
14447
14497
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
14448
14498
|
}
|
|
14499
|
+
/**
|
|
14500
|
+
*
|
|
14501
|
+
* @export
|
|
14502
|
+
* @interface JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14503
|
+
*/
|
|
14504
|
+
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
14505
|
+
/**
|
|
14506
|
+
*
|
|
14507
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
14508
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14509
|
+
*/
|
|
14510
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
14511
|
+
/**
|
|
14512
|
+
*
|
|
14513
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
14514
|
+
* @memberof JsonApiUserDataFilterPostOptionalIdRelationships
|
|
14515
|
+
*/
|
|
14516
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
14517
|
+
}
|
|
14449
14518
|
/**
|
|
14450
14519
|
* JSON:API representation of userGroup entity.
|
|
14451
14520
|
* @export
|
|
@@ -15293,6 +15362,7 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
|
15293
15362
|
readonly TIMEZONE: "TIMEZONE";
|
|
15294
15363
|
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
15295
15364
|
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
15365
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
15296
15366
|
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
15297
15367
|
readonly LOCALE: "LOCALE";
|
|
15298
15368
|
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
@@ -15310,6 +15380,7 @@ export declare const JsonApiUserSettingOutAttributesTypeEnum: {
|
|
|
15310
15380
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
15311
15381
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
15312
15382
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
15383
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
15313
15384
|
};
|
|
15314
15385
|
export type JsonApiUserSettingOutAttributesTypeEnum = typeof JsonApiUserSettingOutAttributesTypeEnum[keyof typeof JsonApiUserSettingOutAttributesTypeEnum];
|
|
15315
15386
|
/**
|
|
@@ -16243,16 +16314,16 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
16243
16314
|
id: string;
|
|
16244
16315
|
/**
|
|
16245
16316
|
*
|
|
16246
|
-
* @type {
|
|
16317
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
16247
16318
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16248
16319
|
*/
|
|
16249
|
-
attributes?:
|
|
16320
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
16250
16321
|
/**
|
|
16251
16322
|
*
|
|
16252
|
-
* @type {
|
|
16323
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
16253
16324
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
16254
16325
|
*/
|
|
16255
|
-
relationships?:
|
|
16326
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
16256
16327
|
}
|
|
16257
16328
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
16258
16329
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -16320,21 +16391,46 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
16320
16391
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16321
16392
|
/**
|
|
16322
16393
|
*
|
|
16323
|
-
* @type {
|
|
16394
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
16324
16395
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16325
16396
|
*/
|
|
16326
|
-
attributes?:
|
|
16397
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
16327
16398
|
/**
|
|
16328
16399
|
*
|
|
16329
|
-
* @type {
|
|
16400
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
16330
16401
|
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
16331
16402
|
*/
|
|
16332
|
-
relationships?:
|
|
16403
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
16333
16404
|
}
|
|
16334
16405
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
16335
16406
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16336
16407
|
};
|
|
16337
16408
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
16409
|
+
/**
|
|
16410
|
+
*
|
|
16411
|
+
* @export
|
|
16412
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16413
|
+
*/
|
|
16414
|
+
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
16415
|
+
/**
|
|
16416
|
+
*
|
|
16417
|
+
* @type {string}
|
|
16418
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16419
|
+
*/
|
|
16420
|
+
title?: string;
|
|
16421
|
+
/**
|
|
16422
|
+
*
|
|
16423
|
+
* @type {string}
|
|
16424
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16425
|
+
*/
|
|
16426
|
+
description?: string;
|
|
16427
|
+
/**
|
|
16428
|
+
*
|
|
16429
|
+
* @type {Array<string>}
|
|
16430
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutAttributes
|
|
16431
|
+
*/
|
|
16432
|
+
filterValues?: Array<string>;
|
|
16433
|
+
}
|
|
16338
16434
|
/**
|
|
16339
16435
|
*
|
|
16340
16436
|
* @export
|
|
@@ -16391,6 +16487,32 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
16391
16487
|
*/
|
|
16392
16488
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
16393
16489
|
}
|
|
16490
|
+
/**
|
|
16491
|
+
*
|
|
16492
|
+
* @export
|
|
16493
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16494
|
+
*/
|
|
16495
|
+
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
16496
|
+
/**
|
|
16497
|
+
*
|
|
16498
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter}
|
|
16499
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationships
|
|
16500
|
+
*/
|
|
16501
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
16502
|
+
}
|
|
16503
|
+
/**
|
|
16504
|
+
*
|
|
16505
|
+
* @export
|
|
16506
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16507
|
+
*/
|
|
16508
|
+
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
16509
|
+
/**
|
|
16510
|
+
*
|
|
16511
|
+
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
16512
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter
|
|
16513
|
+
*/
|
|
16514
|
+
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
16515
|
+
}
|
|
16394
16516
|
/**
|
|
16395
16517
|
*
|
|
16396
16518
|
* @export
|
|
@@ -16417,16 +16539,16 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
16417
16539
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
16418
16540
|
/**
|
|
16419
16541
|
*
|
|
16420
|
-
* @type {
|
|
16542
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
16421
16543
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16422
16544
|
*/
|
|
16423
|
-
attributes?:
|
|
16545
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
16424
16546
|
/**
|
|
16425
16547
|
*
|
|
16426
|
-
* @type {
|
|
16548
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
16427
16549
|
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
16428
16550
|
*/
|
|
16429
|
-
relationships?:
|
|
16551
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
16430
16552
|
/**
|
|
16431
16553
|
*
|
|
16432
16554
|
* @type {ObjectLinks}
|
|
@@ -16458,46 +16580,21 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
16458
16580
|
id: string;
|
|
16459
16581
|
/**
|
|
16460
16582
|
*
|
|
16461
|
-
* @type {
|
|
16583
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutAttributes}
|
|
16462
16584
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16463
16585
|
*/
|
|
16464
|
-
attributes?:
|
|
16586
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
16465
16587
|
/**
|
|
16466
16588
|
*
|
|
16467
|
-
* @type {
|
|
16589
|
+
* @type {JsonApiWorkspaceDataFilterSettingOutRelationships}
|
|
16468
16590
|
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
16469
16591
|
*/
|
|
16470
|
-
relationships?:
|
|
16592
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
16471
16593
|
}
|
|
16472
16594
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
16473
16595
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
16474
16596
|
};
|
|
16475
16597
|
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
|
-
}
|
|
16501
16598
|
/**
|
|
16502
16599
|
*
|
|
16503
16600
|
* @export
|
|
@@ -16511,32 +16608,6 @@ export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
|
16511
16608
|
*/
|
|
16512
16609
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
16513
16610
|
}
|
|
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
|
-
}
|
|
16540
16611
|
/**
|
|
16541
16612
|
* @type JsonApiWorkspaceDataFilterToOneLinkage
|
|
16542
16613
|
* References to other resource objects in a to-one (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -18457,6 +18528,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
18457
18528
|
readonly TIMEZONE: "TIMEZONE";
|
|
18458
18529
|
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
18459
18530
|
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
18531
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
18460
18532
|
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
18461
18533
|
readonly LOCALE: "LOCALE";
|
|
18462
18534
|
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
@@ -18474,6 +18546,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
18474
18546
|
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
18475
18547
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
18476
18548
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
18549
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
18477
18550
|
};
|
|
18478
18551
|
export type ResolvedSettingTypeEnum = typeof ResolvedSettingTypeEnum[keyof typeof ResolvedSettingTypeEnum];
|
|
18479
18552
|
/**
|
|
@@ -19377,6 +19450,12 @@ export interface VisibleFilter {
|
|
|
19377
19450
|
* @memberof VisibleFilter
|
|
19378
19451
|
*/
|
|
19379
19452
|
title?: string;
|
|
19453
|
+
/**
|
|
19454
|
+
* Indicates if the filter is an all-time date filter. Such a filter is not included in report computation, so there is no filter with the same \'localIdentifier\' to be found. In such cases, this flag is used to inform the server to not search for the filter in the definitions and include it anyways.
|
|
19455
|
+
* @type {boolean}
|
|
19456
|
+
* @memberof VisibleFilter
|
|
19457
|
+
*/
|
|
19458
|
+
isAllTimeDateFilter?: boolean;
|
|
19380
19459
|
}
|
|
19381
19460
|
/**
|
|
19382
19461
|
* Export request object describing the export properties and metadata for dashboard PDF exports.
|