@gooddata/api-client-tiger 11.8.0-alpha.3 → 11.8.0-alpha.4
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.js +1 -1
- package/esm/api-client-tiger.d.ts +591 -590
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +1 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +502 -502
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +65 -65
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9721 -9721
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -3195,12 +3195,15 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
|
|
|
3195
3195
|
export interface JsonApiAggregatedFactOutList {
|
|
3196
3196
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
3197
3197
|
links?: ListLinks;
|
|
3198
|
-
meta?:
|
|
3198
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3199
3199
|
/**
|
|
3200
3200
|
* Included resources
|
|
3201
3201
|
*/
|
|
3202
3202
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
3203
3203
|
}
|
|
3204
|
+
export interface JsonApiAggregatedFactOutListMeta {
|
|
3205
|
+
page?: PageMetadata;
|
|
3206
|
+
}
|
|
3204
3207
|
export interface JsonApiAggregatedFactOutRelationships {
|
|
3205
3208
|
dataset?: JsonApiAttributeOutRelationshipsDataset;
|
|
3206
3209
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
@@ -3238,12 +3241,22 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3238
3241
|
* API identifier of an object
|
|
3239
3242
|
*/
|
|
3240
3243
|
id: string;
|
|
3241
|
-
attributes:
|
|
3244
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3242
3245
|
}
|
|
3243
3246
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3244
3247
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3245
3248
|
};
|
|
3246
3249
|
export type JsonApiAnalyticalDashboardInTypeEnum = (typeof JsonApiAnalyticalDashboardInTypeEnum)[keyof typeof JsonApiAnalyticalDashboardInTypeEnum];
|
|
3250
|
+
export interface JsonApiAnalyticalDashboardInAttributes {
|
|
3251
|
+
title?: string;
|
|
3252
|
+
description?: string;
|
|
3253
|
+
tags?: Array<string>;
|
|
3254
|
+
areRelationsValid?: boolean;
|
|
3255
|
+
/**
|
|
3256
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3257
|
+
*/
|
|
3258
|
+
content: object;
|
|
3259
|
+
}
|
|
3247
3260
|
export interface JsonApiAnalyticalDashboardInDocument {
|
|
3248
3261
|
data: JsonApiAnalyticalDashboardIn;
|
|
3249
3262
|
}
|
|
@@ -3308,7 +3321,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
3308
3321
|
export interface JsonApiAnalyticalDashboardOutList {
|
|
3309
3322
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
3310
3323
|
links?: ListLinks;
|
|
3311
|
-
meta?:
|
|
3324
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3312
3325
|
/**
|
|
3313
3326
|
* Included resources
|
|
3314
3327
|
*/
|
|
@@ -3430,22 +3443,12 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3430
3443
|
* API identifier of an object
|
|
3431
3444
|
*/
|
|
3432
3445
|
id?: string;
|
|
3433
|
-
attributes:
|
|
3446
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
3434
3447
|
}
|
|
3435
3448
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3436
3449
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3437
3450
|
};
|
|
3438
3451
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
|
|
3439
|
-
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
3440
|
-
title?: string;
|
|
3441
|
-
description?: string;
|
|
3442
|
-
tags?: Array<string>;
|
|
3443
|
-
areRelationsValid?: boolean;
|
|
3444
|
-
/**
|
|
3445
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3446
|
-
*/
|
|
3447
|
-
content: object;
|
|
3448
|
-
}
|
|
3449
3452
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
3450
3453
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
3451
3454
|
}
|
|
@@ -3503,7 +3506,7 @@ export interface JsonApiApiTokenOutDocument {
|
|
|
3503
3506
|
export interface JsonApiApiTokenOutList {
|
|
3504
3507
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
3505
3508
|
links?: ListLinks;
|
|
3506
|
-
meta?:
|
|
3509
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3507
3510
|
}
|
|
3508
3511
|
export interface JsonApiApiTokenOutWithLinks {
|
|
3509
3512
|
/**
|
|
@@ -3613,7 +3616,7 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
|
|
|
3613
3616
|
export interface JsonApiAttributeHierarchyOutList {
|
|
3614
3617
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
3615
3618
|
links?: ListLinks;
|
|
3616
|
-
meta?:
|
|
3619
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3617
3620
|
/**
|
|
3618
3621
|
* Included resources
|
|
3619
3622
|
*/
|
|
@@ -3758,7 +3761,7 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
|
|
|
3758
3761
|
export interface JsonApiAttributeOutList {
|
|
3759
3762
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
3760
3763
|
links?: ListLinks;
|
|
3761
|
-
meta?:
|
|
3764
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
3762
3765
|
/**
|
|
3763
3766
|
* Included resources
|
|
3764
3767
|
*/
|
|
@@ -4042,7 +4045,7 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
4042
4045
|
export interface JsonApiAutomationOutList {
|
|
4043
4046
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
4044
4047
|
links?: ListLinks;
|
|
4045
|
-
meta?:
|
|
4048
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4046
4049
|
/**
|
|
4047
4050
|
* Included resources
|
|
4048
4051
|
*/
|
|
@@ -4182,12 +4185,19 @@ export interface JsonApiColorPaletteIn {
|
|
|
4182
4185
|
* API identifier of an object
|
|
4183
4186
|
*/
|
|
4184
4187
|
id: string;
|
|
4185
|
-
attributes:
|
|
4188
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4186
4189
|
}
|
|
4187
4190
|
export declare const JsonApiColorPaletteInTypeEnum: {
|
|
4188
4191
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4189
4192
|
};
|
|
4190
4193
|
export type JsonApiColorPaletteInTypeEnum = (typeof JsonApiColorPaletteInTypeEnum)[keyof typeof JsonApiColorPaletteInTypeEnum];
|
|
4194
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
4195
|
+
name: string;
|
|
4196
|
+
/**
|
|
4197
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4198
|
+
*/
|
|
4199
|
+
content: object;
|
|
4200
|
+
}
|
|
4191
4201
|
export interface JsonApiColorPaletteInDocument {
|
|
4192
4202
|
data: JsonApiColorPaletteIn;
|
|
4193
4203
|
}
|
|
@@ -4203,19 +4213,12 @@ export interface JsonApiColorPaletteOut {
|
|
|
4203
4213
|
* API identifier of an object
|
|
4204
4214
|
*/
|
|
4205
4215
|
id: string;
|
|
4206
|
-
attributes:
|
|
4216
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4207
4217
|
}
|
|
4208
4218
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
4209
4219
|
readonly COLOR_PALETTE: "colorPalette";
|
|
4210
4220
|
};
|
|
4211
4221
|
export type JsonApiColorPaletteOutTypeEnum = (typeof JsonApiColorPaletteOutTypeEnum)[keyof typeof JsonApiColorPaletteOutTypeEnum];
|
|
4212
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
4213
|
-
name: string;
|
|
4214
|
-
/**
|
|
4215
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4216
|
-
*/
|
|
4217
|
-
content: object;
|
|
4218
|
-
}
|
|
4219
4222
|
export interface JsonApiColorPaletteOutDocument {
|
|
4220
4223
|
data: JsonApiColorPaletteOut;
|
|
4221
4224
|
links?: ObjectLinks;
|
|
@@ -4226,10 +4229,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
4226
4229
|
export interface JsonApiColorPaletteOutList {
|
|
4227
4230
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
4228
4231
|
links?: ListLinks;
|
|
4229
|
-
meta?:
|
|
4230
|
-
}
|
|
4231
|
-
export interface JsonApiColorPaletteOutListMeta {
|
|
4232
|
-
page?: PageMetadata;
|
|
4232
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4233
4233
|
}
|
|
4234
4234
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
4235
4235
|
/**
|
|
@@ -4240,7 +4240,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
4240
4240
|
* API identifier of an object
|
|
4241
4241
|
*/
|
|
4242
4242
|
id: string;
|
|
4243
|
-
attributes:
|
|
4243
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
4244
4244
|
links?: ObjectLinks;
|
|
4245
4245
|
}
|
|
4246
4246
|
export declare const JsonApiColorPaletteOutWithLinksTypeEnum: {
|
|
@@ -4287,19 +4287,12 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4287
4287
|
* API identifier of an object
|
|
4288
4288
|
*/
|
|
4289
4289
|
id: string;
|
|
4290
|
-
attributes?:
|
|
4290
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4291
4291
|
}
|
|
4292
4292
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4293
4293
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4294
4294
|
};
|
|
4295
4295
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4296
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4297
|
-
lastRotation?: string;
|
|
4298
|
-
/**
|
|
4299
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4300
|
-
*/
|
|
4301
|
-
rotationInterval?: string;
|
|
4302
|
-
}
|
|
4303
4296
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4304
4297
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4305
4298
|
}
|
|
@@ -4315,7 +4308,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4315
4308
|
* API identifier of an object
|
|
4316
4309
|
*/
|
|
4317
4310
|
id: string;
|
|
4318
|
-
attributes?:
|
|
4311
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4319
4312
|
}
|
|
4320
4313
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4321
4314
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4337,12 +4330,19 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4337
4330
|
* API identifier of an object
|
|
4338
4331
|
*/
|
|
4339
4332
|
id: string;
|
|
4340
|
-
attributes?:
|
|
4333
|
+
attributes?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4341
4334
|
}
|
|
4342
4335
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4343
4336
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4344
4337
|
};
|
|
4345
4338
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
4339
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4340
|
+
lastRotation?: string;
|
|
4341
|
+
/**
|
|
4342
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4343
|
+
*/
|
|
4344
|
+
rotationInterval?: string;
|
|
4345
|
+
}
|
|
4346
4346
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4347
4347
|
data: JsonApiCookieSecurityConfigurationPatch;
|
|
4348
4348
|
}
|
|
@@ -4358,12 +4358,15 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4358
4358
|
* API identifier of an object
|
|
4359
4359
|
*/
|
|
4360
4360
|
id: string;
|
|
4361
|
-
attributes:
|
|
4361
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4362
4362
|
}
|
|
4363
4363
|
export declare const JsonApiCspDirectiveInTypeEnum: {
|
|
4364
4364
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4365
4365
|
};
|
|
4366
4366
|
export type JsonApiCspDirectiveInTypeEnum = (typeof JsonApiCspDirectiveInTypeEnum)[keyof typeof JsonApiCspDirectiveInTypeEnum];
|
|
4367
|
+
export interface JsonApiCspDirectiveInAttributes {
|
|
4368
|
+
sources: Array<string>;
|
|
4369
|
+
}
|
|
4367
4370
|
export interface JsonApiCspDirectiveInDocument {
|
|
4368
4371
|
data: JsonApiCspDirectiveIn;
|
|
4369
4372
|
}
|
|
@@ -4379,15 +4382,12 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4379
4382
|
* API identifier of an object
|
|
4380
4383
|
*/
|
|
4381
4384
|
id: string;
|
|
4382
|
-
attributes:
|
|
4385
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4383
4386
|
}
|
|
4384
4387
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
4385
4388
|
readonly CSP_DIRECTIVE: "cspDirective";
|
|
4386
4389
|
};
|
|
4387
4390
|
export type JsonApiCspDirectiveOutTypeEnum = (typeof JsonApiCspDirectiveOutTypeEnum)[keyof typeof JsonApiCspDirectiveOutTypeEnum];
|
|
4388
|
-
export interface JsonApiCspDirectiveOutAttributes {
|
|
4389
|
-
sources: Array<string>;
|
|
4390
|
-
}
|
|
4391
4391
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4392
4392
|
data: JsonApiCspDirectiveOut;
|
|
4393
4393
|
links?: ObjectLinks;
|
|
@@ -4398,7 +4398,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4398
4398
|
export interface JsonApiCspDirectiveOutList {
|
|
4399
4399
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4400
4400
|
links?: ListLinks;
|
|
4401
|
-
meta?:
|
|
4401
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4402
4402
|
}
|
|
4403
4403
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4404
4404
|
/**
|
|
@@ -4409,7 +4409,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4409
4409
|
* API identifier of an object
|
|
4410
4410
|
*/
|
|
4411
4411
|
id: string;
|
|
4412
|
-
attributes:
|
|
4412
|
+
attributes: JsonApiCspDirectiveInAttributes;
|
|
4413
4413
|
links?: ObjectLinks;
|
|
4414
4414
|
}
|
|
4415
4415
|
export declare const JsonApiCspDirectiveOutWithLinksTypeEnum: {
|
|
@@ -4452,12 +4452,19 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4452
4452
|
* API identifier of an object
|
|
4453
4453
|
*/
|
|
4454
4454
|
id: string;
|
|
4455
|
-
attributes:
|
|
4455
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4456
4456
|
}
|
|
4457
4457
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4458
4458
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4459
4459
|
};
|
|
4460
4460
|
export type JsonApiCustomApplicationSettingInTypeEnum = (typeof JsonApiCustomApplicationSettingInTypeEnum)[keyof typeof JsonApiCustomApplicationSettingInTypeEnum];
|
|
4461
|
+
export interface JsonApiCustomApplicationSettingInAttributes {
|
|
4462
|
+
applicationName: string;
|
|
4463
|
+
/**
|
|
4464
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4465
|
+
*/
|
|
4466
|
+
content: object;
|
|
4467
|
+
}
|
|
4461
4468
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
4462
4469
|
data: JsonApiCustomApplicationSettingIn;
|
|
4463
4470
|
}
|
|
@@ -4474,7 +4481,7 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4474
4481
|
*/
|
|
4475
4482
|
id: string;
|
|
4476
4483
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4477
|
-
attributes:
|
|
4484
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4478
4485
|
}
|
|
4479
4486
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4480
4487
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4490,7 +4497,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
4490
4497
|
export interface JsonApiCustomApplicationSettingOutList {
|
|
4491
4498
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
4492
4499
|
links?: ListLinks;
|
|
4493
|
-
meta?:
|
|
4500
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4494
4501
|
}
|
|
4495
4502
|
export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
4496
4503
|
/**
|
|
@@ -4502,7 +4509,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4502
4509
|
*/
|
|
4503
4510
|
id: string;
|
|
4504
4511
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4505
|
-
attributes:
|
|
4512
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4506
4513
|
links?: ObjectLinks;
|
|
4507
4514
|
}
|
|
4508
4515
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4549,19 +4556,12 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4549
4556
|
* API identifier of an object
|
|
4550
4557
|
*/
|
|
4551
4558
|
id?: string;
|
|
4552
|
-
attributes:
|
|
4559
|
+
attributes: JsonApiCustomApplicationSettingInAttributes;
|
|
4553
4560
|
}
|
|
4554
4561
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4555
4562
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4556
4563
|
};
|
|
4557
4564
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
|
|
4558
|
-
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
4559
|
-
applicationName: string;
|
|
4560
|
-
/**
|
|
4561
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4562
|
-
*/
|
|
4563
|
-
content: object;
|
|
4564
|
-
}
|
|
4565
4565
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4566
4566
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
4567
4567
|
}
|
|
@@ -4577,12 +4577,22 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4577
4577
|
* API identifier of an object
|
|
4578
4578
|
*/
|
|
4579
4579
|
id: string;
|
|
4580
|
-
attributes?:
|
|
4580
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4581
4581
|
}
|
|
4582
4582
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4583
4583
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4584
4584
|
};
|
|
4585
4585
|
export type JsonApiDashboardPluginInTypeEnum = (typeof JsonApiDashboardPluginInTypeEnum)[keyof typeof JsonApiDashboardPluginInTypeEnum];
|
|
4586
|
+
export interface JsonApiDashboardPluginInAttributes {
|
|
4587
|
+
title?: string;
|
|
4588
|
+
description?: string;
|
|
4589
|
+
tags?: Array<string>;
|
|
4590
|
+
areRelationsValid?: boolean;
|
|
4591
|
+
/**
|
|
4592
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4593
|
+
*/
|
|
4594
|
+
content?: object;
|
|
4595
|
+
}
|
|
4586
4596
|
export interface JsonApiDashboardPluginInDocument {
|
|
4587
4597
|
data: JsonApiDashboardPluginIn;
|
|
4588
4598
|
}
|
|
@@ -4643,7 +4653,7 @@ export interface JsonApiDashboardPluginOutDocument {
|
|
|
4643
4653
|
export interface JsonApiDashboardPluginOutList {
|
|
4644
4654
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
4645
4655
|
links?: ListLinks;
|
|
4646
|
-
meta?:
|
|
4656
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4647
4657
|
/**
|
|
4648
4658
|
* Included resources
|
|
4649
4659
|
*/
|
|
@@ -4683,7 +4693,7 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4683
4693
|
* API identifier of an object
|
|
4684
4694
|
*/
|
|
4685
4695
|
id: string;
|
|
4686
|
-
attributes?:
|
|
4696
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4687
4697
|
}
|
|
4688
4698
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4689
4699
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4704,22 +4714,12 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4704
4714
|
* API identifier of an object
|
|
4705
4715
|
*/
|
|
4706
4716
|
id?: string;
|
|
4707
|
-
attributes?:
|
|
4717
|
+
attributes?: JsonApiDashboardPluginInAttributes;
|
|
4708
4718
|
}
|
|
4709
4719
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4710
4720
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4711
4721
|
};
|
|
4712
4722
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
4713
|
-
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4714
|
-
title?: string;
|
|
4715
|
-
description?: string;
|
|
4716
|
-
tags?: Array<string>;
|
|
4717
|
-
areRelationsValid?: boolean;
|
|
4718
|
-
/**
|
|
4719
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4720
|
-
*/
|
|
4721
|
-
content?: object;
|
|
4722
|
-
}
|
|
4723
4723
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4724
4724
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4725
4725
|
}
|
|
@@ -4735,7 +4735,7 @@ export interface JsonApiDataSourceIdentifierOut {
|
|
|
4735
4735
|
* API identifier of an object
|
|
4736
4736
|
*/
|
|
4737
4737
|
id: string;
|
|
4738
|
-
meta?:
|
|
4738
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4739
4739
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4740
4740
|
}
|
|
4741
4741
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
@@ -4786,19 +4786,8 @@ export interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
4786
4786
|
export interface JsonApiDataSourceIdentifierOutList {
|
|
4787
4787
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
4788
4788
|
links?: ListLinks;
|
|
4789
|
-
meta?:
|
|
4789
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
4790
4790
|
}
|
|
4791
|
-
export interface JsonApiDataSourceIdentifierOutMeta {
|
|
4792
|
-
/**
|
|
4793
|
-
* List of valid permissions for a logged-in user.
|
|
4794
|
-
*/
|
|
4795
|
-
permissions?: Array<JsonApiDataSourceIdentifierOutMetaPermissionsEnum>;
|
|
4796
|
-
}
|
|
4797
|
-
export declare const JsonApiDataSourceIdentifierOutMetaPermissionsEnum: {
|
|
4798
|
-
readonly MANAGE: "MANAGE";
|
|
4799
|
-
readonly USE: "USE";
|
|
4800
|
-
};
|
|
4801
|
-
export type JsonApiDataSourceIdentifierOutMetaPermissionsEnum = (typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceIdentifierOutMetaPermissionsEnum];
|
|
4802
4791
|
export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
4803
4792
|
/**
|
|
4804
4793
|
* Object type
|
|
@@ -4808,7 +4797,7 @@ export interface JsonApiDataSourceIdentifierOutWithLinks {
|
|
|
4808
4797
|
* API identifier of an object
|
|
4809
4798
|
*/
|
|
4810
4799
|
id: string;
|
|
4811
|
-
meta?:
|
|
4800
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4812
4801
|
attributes: JsonApiDataSourceIdentifierOutAttributes;
|
|
4813
4802
|
links?: ObjectLinks;
|
|
4814
4803
|
}
|
|
@@ -4882,7 +4871,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4882
4871
|
/**
|
|
4883
4872
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4884
4873
|
*/
|
|
4885
|
-
parameters?: Array<
|
|
4874
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4886
4875
|
/**
|
|
4887
4876
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4888
4877
|
*/
|
|
@@ -4922,6 +4911,10 @@ export declare const JsonApiDataSourceInAttributesCacheStrategyEnum: {
|
|
|
4922
4911
|
readonly NEVER: "NEVER";
|
|
4923
4912
|
};
|
|
4924
4913
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = (typeof JsonApiDataSourceInAttributesCacheStrategyEnum)[keyof typeof JsonApiDataSourceInAttributesCacheStrategyEnum];
|
|
4914
|
+
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
4915
|
+
name: string;
|
|
4916
|
+
value: string;
|
|
4917
|
+
}
|
|
4925
4918
|
export interface JsonApiDataSourceInDocument {
|
|
4926
4919
|
data: JsonApiDataSourceIn;
|
|
4927
4920
|
}
|
|
@@ -4937,7 +4930,7 @@ export interface JsonApiDataSourceOut {
|
|
|
4937
4930
|
* API identifier of an object
|
|
4938
4931
|
*/
|
|
4939
4932
|
id: string;
|
|
4940
|
-
meta?:
|
|
4933
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
4941
4934
|
attributes: JsonApiDataSourceOutAttributes;
|
|
4942
4935
|
}
|
|
4943
4936
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -4972,11 +4965,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4972
4965
|
/**
|
|
4973
4966
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
4974
4967
|
*/
|
|
4975
|
-
parameters?: Array<
|
|
4968
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4976
4969
|
/**
|
|
4977
4970
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
4978
4971
|
*/
|
|
4979
|
-
decodedParameters?: Array<
|
|
4972
|
+
decodedParameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
4980
4973
|
/**
|
|
4981
4974
|
* Determines how the results coming from a particular datasource should be cached.
|
|
4982
4975
|
*/
|
|
@@ -5028,10 +5021,6 @@ export declare const JsonApiDataSourceOutAttributesAuthenticationTypeEnum: {
|
|
|
5028
5021
|
readonly ACCESS_TOKEN: "ACCESS_TOKEN";
|
|
5029
5022
|
};
|
|
5030
5023
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = (typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum)[keyof typeof JsonApiDataSourceOutAttributesAuthenticationTypeEnum];
|
|
5031
|
-
export interface JsonApiDataSourceOutAttributesParametersInner {
|
|
5032
|
-
name: string;
|
|
5033
|
-
value: string;
|
|
5034
|
-
}
|
|
5035
5024
|
export interface JsonApiDataSourceOutDocument {
|
|
5036
5025
|
data: JsonApiDataSourceOut;
|
|
5037
5026
|
links?: ObjectLinks;
|
|
@@ -5042,8 +5031,19 @@ export interface JsonApiDataSourceOutDocument {
|
|
|
5042
5031
|
export interface JsonApiDataSourceOutList {
|
|
5043
5032
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
5044
5033
|
links?: ListLinks;
|
|
5045
|
-
meta?:
|
|
5034
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5035
|
+
}
|
|
5036
|
+
export interface JsonApiDataSourceOutMeta {
|
|
5037
|
+
/**
|
|
5038
|
+
* List of valid permissions for a logged-in user.
|
|
5039
|
+
*/
|
|
5040
|
+
permissions?: Array<JsonApiDataSourceOutMetaPermissionsEnum>;
|
|
5046
5041
|
}
|
|
5042
|
+
export declare const JsonApiDataSourceOutMetaPermissionsEnum: {
|
|
5043
|
+
readonly MANAGE: "MANAGE";
|
|
5044
|
+
readonly USE: "USE";
|
|
5045
|
+
};
|
|
5046
|
+
export type JsonApiDataSourceOutMetaPermissionsEnum = (typeof JsonApiDataSourceOutMetaPermissionsEnum)[keyof typeof JsonApiDataSourceOutMetaPermissionsEnum];
|
|
5047
5047
|
export interface JsonApiDataSourceOutWithLinks {
|
|
5048
5048
|
/**
|
|
5049
5049
|
* Object type
|
|
@@ -5053,7 +5053,7 @@ export interface JsonApiDataSourceOutWithLinks {
|
|
|
5053
5053
|
* API identifier of an object
|
|
5054
5054
|
*/
|
|
5055
5055
|
id: string;
|
|
5056
|
-
meta?:
|
|
5056
|
+
meta?: JsonApiDataSourceOutMeta;
|
|
5057
5057
|
attributes: JsonApiDataSourceOutAttributes;
|
|
5058
5058
|
links?: ObjectLinks;
|
|
5059
5059
|
}
|
|
@@ -5127,7 +5127,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
5127
5127
|
/**
|
|
5128
5128
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5129
5129
|
*/
|
|
5130
|
-
parameters?: Array<
|
|
5130
|
+
parameters?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5131
5131
|
/**
|
|
5132
5132
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5133
5133
|
*/
|
|
@@ -5304,7 +5304,7 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
|
|
|
5304
5304
|
export interface JsonApiDatasetOutList {
|
|
5305
5305
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
5306
5306
|
links?: ListLinks;
|
|
5307
|
-
meta?:
|
|
5307
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* Included resources
|
|
5310
5310
|
*/
|
|
@@ -5379,7 +5379,7 @@ export interface JsonApiEntitlementOutDocument {
|
|
|
5379
5379
|
export interface JsonApiEntitlementOutList {
|
|
5380
5380
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
5381
5381
|
links?: ListLinks;
|
|
5382
|
-
meta?:
|
|
5382
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5383
5383
|
}
|
|
5384
5384
|
export interface JsonApiEntitlementOutWithLinks {
|
|
5385
5385
|
/**
|
|
@@ -5409,16 +5409,27 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5409
5409
|
* API identifier of an object
|
|
5410
5410
|
*/
|
|
5411
5411
|
id: string;
|
|
5412
|
-
attributes?:
|
|
5413
|
-
relationships?:
|
|
5412
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5413
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5414
5414
|
}
|
|
5415
5415
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5416
5416
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5417
5417
|
};
|
|
5418
5418
|
export type JsonApiExportDefinitionInTypeEnum = (typeof JsonApiExportDefinitionInTypeEnum)[keyof typeof JsonApiExportDefinitionInTypeEnum];
|
|
5419
|
+
export interface JsonApiExportDefinitionInAttributes {
|
|
5420
|
+
title?: string;
|
|
5421
|
+
description?: string;
|
|
5422
|
+
tags?: Array<string>;
|
|
5423
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5424
|
+
areRelationsValid?: boolean;
|
|
5425
|
+
}
|
|
5419
5426
|
export interface JsonApiExportDefinitionInDocument {
|
|
5420
5427
|
data: JsonApiExportDefinitionIn;
|
|
5421
5428
|
}
|
|
5429
|
+
export interface JsonApiExportDefinitionInRelationships {
|
|
5430
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5431
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5432
|
+
}
|
|
5422
5433
|
/**
|
|
5423
5434
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
5424
5435
|
*/
|
|
@@ -5482,7 +5493,7 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
|
|
|
5482
5493
|
export interface JsonApiExportDefinitionOutList {
|
|
5483
5494
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
5484
5495
|
links?: ListLinks;
|
|
5485
|
-
meta?:
|
|
5496
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5486
5497
|
/**
|
|
5487
5498
|
* Included resources
|
|
5488
5499
|
*/
|
|
@@ -5531,8 +5542,8 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5531
5542
|
* API identifier of an object
|
|
5532
5543
|
*/
|
|
5533
5544
|
id: string;
|
|
5534
|
-
attributes?:
|
|
5535
|
-
relationships?:
|
|
5545
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5546
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5536
5547
|
}
|
|
5537
5548
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5538
5549
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5553,27 +5564,16 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5553
5564
|
* API identifier of an object
|
|
5554
5565
|
*/
|
|
5555
5566
|
id?: string;
|
|
5556
|
-
attributes?:
|
|
5557
|
-
relationships?:
|
|
5567
|
+
attributes?: JsonApiExportDefinitionInAttributes;
|
|
5568
|
+
relationships?: JsonApiExportDefinitionInRelationships;
|
|
5558
5569
|
}
|
|
5559
5570
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5560
5571
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5561
5572
|
};
|
|
5562
5573
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
5563
|
-
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
5564
|
-
title?: string;
|
|
5565
|
-
description?: string;
|
|
5566
|
-
tags?: Array<string>;
|
|
5567
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5568
|
-
areRelationsValid?: boolean;
|
|
5569
|
-
}
|
|
5570
5574
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5571
5575
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5572
5576
|
}
|
|
5573
|
-
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5574
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5575
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5576
|
-
}
|
|
5577
5577
|
/**
|
|
5578
5578
|
* JSON:API representation of exportTemplate entity.
|
|
5579
5579
|
*/
|
|
@@ -5586,7 +5586,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5586
5586
|
* API identifier of an object
|
|
5587
5587
|
*/
|
|
5588
5588
|
id: string;
|
|
5589
|
-
attributes:
|
|
5589
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5590
5590
|
}
|
|
5591
5591
|
export declare const JsonApiExportTemplateInTypeEnum: {
|
|
5592
5592
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
@@ -5607,53 +5607,12 @@ export interface JsonApiExportTemplateOut {
|
|
|
5607
5607
|
* API identifier of an object
|
|
5608
5608
|
*/
|
|
5609
5609
|
id: string;
|
|
5610
|
-
attributes:
|
|
5610
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5611
5611
|
}
|
|
5612
5612
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
5613
5613
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5614
5614
|
};
|
|
5615
5615
|
export type JsonApiExportTemplateOutTypeEnum = (typeof JsonApiExportTemplateOutTypeEnum)[keyof typeof JsonApiExportTemplateOutTypeEnum];
|
|
5616
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5617
|
-
/**
|
|
5618
|
-
* User-facing name of the Slides template.
|
|
5619
|
-
*/
|
|
5620
|
-
name: string;
|
|
5621
|
-
dashboardSlidesTemplate?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5622
|
-
widgetSlidesTemplate?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5623
|
-
}
|
|
5624
|
-
/**
|
|
5625
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5626
|
-
*/
|
|
5627
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5628
|
-
/**
|
|
5629
|
-
* Export types this template applies to.
|
|
5630
|
-
*/
|
|
5631
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5632
|
-
coverSlide?: CoverSlideTemplate | null;
|
|
5633
|
-
introSlide?: IntroSlideTemplate | null;
|
|
5634
|
-
sectionSlide?: SectionSlideTemplate | null;
|
|
5635
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5636
|
-
}
|
|
5637
|
-
export declare const JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5638
|
-
readonly PDF: "PDF";
|
|
5639
|
-
readonly PPTX: "PPTX";
|
|
5640
|
-
};
|
|
5641
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5642
|
-
/**
|
|
5643
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5644
|
-
*/
|
|
5645
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5646
|
-
/**
|
|
5647
|
-
* Export types this template applies to.
|
|
5648
|
-
*/
|
|
5649
|
-
appliedOn: Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5650
|
-
contentSlide?: ContentSlideTemplate | null;
|
|
5651
|
-
}
|
|
5652
|
-
export declare const JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5653
|
-
readonly PDF: "PDF";
|
|
5654
|
-
readonly PPTX: "PPTX";
|
|
5655
|
-
};
|
|
5656
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5657
5616
|
export interface JsonApiExportTemplateOutDocument {
|
|
5658
5617
|
data: JsonApiExportTemplateOut;
|
|
5659
5618
|
links?: ObjectLinks;
|
|
@@ -5664,7 +5623,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5664
5623
|
export interface JsonApiExportTemplateOutList {
|
|
5665
5624
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
5666
5625
|
links?: ListLinks;
|
|
5667
|
-
meta?:
|
|
5626
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5668
5627
|
}
|
|
5669
5628
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5670
5629
|
/**
|
|
@@ -5675,7 +5634,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5675
5634
|
* API identifier of an object
|
|
5676
5635
|
*/
|
|
5677
5636
|
id: string;
|
|
5678
|
-
attributes:
|
|
5637
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5679
5638
|
links?: ObjectLinks;
|
|
5680
5639
|
}
|
|
5681
5640
|
export declare const JsonApiExportTemplateOutWithLinksTypeEnum: {
|
|
@@ -5705,8 +5664,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5705
5664
|
* User-facing name of the Slides template.
|
|
5706
5665
|
*/
|
|
5707
5666
|
name?: string;
|
|
5708
|
-
dashboardSlidesTemplate?:
|
|
5709
|
-
widgetSlidesTemplate?:
|
|
5667
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5668
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5710
5669
|
}
|
|
5711
5670
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5712
5671
|
data: JsonApiExportTemplatePatch;
|
|
@@ -5723,12 +5682,53 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5723
5682
|
* API identifier of an object
|
|
5724
5683
|
*/
|
|
5725
5684
|
id?: string;
|
|
5726
|
-
attributes:
|
|
5685
|
+
attributes: JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5727
5686
|
}
|
|
5728
5687
|
export declare const JsonApiExportTemplatePostOptionalIdTypeEnum: {
|
|
5729
5688
|
readonly EXPORT_TEMPLATE: "exportTemplate";
|
|
5730
5689
|
};
|
|
5731
5690
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = (typeof JsonApiExportTemplatePostOptionalIdTypeEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdTypeEnum];
|
|
5691
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5692
|
+
/**
|
|
5693
|
+
* User-facing name of the Slides template.
|
|
5694
|
+
*/
|
|
5695
|
+
name: string;
|
|
5696
|
+
dashboardSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5697
|
+
widgetSlidesTemplate?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5698
|
+
}
|
|
5699
|
+
/**
|
|
5700
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5701
|
+
*/
|
|
5702
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5703
|
+
/**
|
|
5704
|
+
* Export types this template applies to.
|
|
5705
|
+
*/
|
|
5706
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5707
|
+
coverSlide?: CoverSlideTemplate | null;
|
|
5708
|
+
introSlide?: IntroSlideTemplate | null;
|
|
5709
|
+
sectionSlide?: SectionSlideTemplate | null;
|
|
5710
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5711
|
+
}
|
|
5712
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum: {
|
|
5713
|
+
readonly PDF: "PDF";
|
|
5714
|
+
readonly PPTX: "PPTX";
|
|
5715
|
+
};
|
|
5716
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum];
|
|
5717
|
+
/**
|
|
5718
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5719
|
+
*/
|
|
5720
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5721
|
+
/**
|
|
5722
|
+
* Export types this template applies to.
|
|
5723
|
+
*/
|
|
5724
|
+
appliedOn: Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5725
|
+
contentSlide?: ContentSlideTemplate | null;
|
|
5726
|
+
}
|
|
5727
|
+
export declare const JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum: {
|
|
5728
|
+
readonly PDF: "PDF";
|
|
5729
|
+
readonly PPTX: "PPTX";
|
|
5730
|
+
};
|
|
5731
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = (typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum)[keyof typeof JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum];
|
|
5732
5732
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5733
5733
|
data: JsonApiExportTemplatePostOptionalId;
|
|
5734
5734
|
}
|
|
@@ -5796,7 +5796,7 @@ export interface JsonApiFactOutDocument {
|
|
|
5796
5796
|
export interface JsonApiFactOutList {
|
|
5797
5797
|
data: Array<JsonApiFactOutWithLinks>;
|
|
5798
5798
|
links?: ListLinks;
|
|
5799
|
-
meta?:
|
|
5799
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5800
5800
|
/**
|
|
5801
5801
|
* Included resources
|
|
5802
5802
|
*/
|
|
@@ -5835,7 +5835,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5835
5835
|
* API identifier of an object
|
|
5836
5836
|
*/
|
|
5837
5837
|
id: string;
|
|
5838
|
-
attributes:
|
|
5838
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5839
5839
|
}
|
|
5840
5840
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5841
5841
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5868,7 +5868,7 @@ export interface JsonApiFilterContextOut {
|
|
|
5868
5868
|
*/
|
|
5869
5869
|
id: string;
|
|
5870
5870
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5871
|
-
attributes:
|
|
5871
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5872
5872
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5873
5873
|
}
|
|
5874
5874
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
@@ -5893,7 +5893,7 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
|
|
|
5893
5893
|
export interface JsonApiFilterContextOutList {
|
|
5894
5894
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
5895
5895
|
links?: ListLinks;
|
|
5896
|
-
meta?:
|
|
5896
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
5897
5897
|
/**
|
|
5898
5898
|
* Included resources
|
|
5899
5899
|
*/
|
|
@@ -5914,7 +5914,7 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5914
5914
|
*/
|
|
5915
5915
|
id: string;
|
|
5916
5916
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5917
|
-
attributes:
|
|
5917
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5918
5918
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5919
5919
|
links?: ObjectLinks;
|
|
5920
5920
|
}
|
|
@@ -5955,7 +5955,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5955
5955
|
* API identifier of an object
|
|
5956
5956
|
*/
|
|
5957
5957
|
id?: string;
|
|
5958
|
-
attributes:
|
|
5958
|
+
attributes: JsonApiAnalyticalDashboardInAttributes;
|
|
5959
5959
|
}
|
|
5960
5960
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5961
5961
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -6002,7 +6002,10 @@ export interface JsonApiFilterViewInDocument {
|
|
|
6002
6002
|
}
|
|
6003
6003
|
export interface JsonApiFilterViewInRelationships {
|
|
6004
6004
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
6005
|
-
user?:
|
|
6005
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
6006
|
+
}
|
|
6007
|
+
export interface JsonApiFilterViewInRelationshipsUser {
|
|
6008
|
+
data: JsonApiUserLinkage | null;
|
|
6006
6009
|
}
|
|
6007
6010
|
/**
|
|
6008
6011
|
* JSON:API representation of filterView entity.
|
|
@@ -6041,7 +6044,7 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
6041
6044
|
export interface JsonApiFilterViewOutList {
|
|
6042
6045
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
6043
6046
|
links?: ListLinks;
|
|
6044
|
-
meta?:
|
|
6047
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6045
6048
|
/**
|
|
6046
6049
|
* Included resources
|
|
6047
6050
|
*/
|
|
@@ -6266,7 +6269,7 @@ export interface JsonApiIdentityProviderOutDocument {
|
|
|
6266
6269
|
export interface JsonApiIdentityProviderOutList {
|
|
6267
6270
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
6268
6271
|
links?: ListLinks;
|
|
6269
|
-
meta?:
|
|
6272
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6270
6273
|
}
|
|
6271
6274
|
export interface JsonApiIdentityProviderOutWithLinks {
|
|
6272
6275
|
/**
|
|
@@ -6317,12 +6320,15 @@ export interface JsonApiJwkIn {
|
|
|
6317
6320
|
* API identifier of an object
|
|
6318
6321
|
*/
|
|
6319
6322
|
id: string;
|
|
6320
|
-
attributes?:
|
|
6323
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6321
6324
|
}
|
|
6322
6325
|
export declare const JsonApiJwkInTypeEnum: {
|
|
6323
6326
|
readonly JWK: "jwk";
|
|
6324
6327
|
};
|
|
6325
6328
|
export type JsonApiJwkInTypeEnum = (typeof JsonApiJwkInTypeEnum)[keyof typeof JsonApiJwkInTypeEnum];
|
|
6329
|
+
export interface JsonApiJwkInAttributes {
|
|
6330
|
+
content?: RsaSpecification;
|
|
6331
|
+
}
|
|
6326
6332
|
export interface JsonApiJwkInDocument {
|
|
6327
6333
|
data: JsonApiJwkIn;
|
|
6328
6334
|
}
|
|
@@ -6338,15 +6344,12 @@ export interface JsonApiJwkOut {
|
|
|
6338
6344
|
* API identifier of an object
|
|
6339
6345
|
*/
|
|
6340
6346
|
id: string;
|
|
6341
|
-
attributes?:
|
|
6347
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6342
6348
|
}
|
|
6343
6349
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
6344
6350
|
readonly JWK: "jwk";
|
|
6345
6351
|
};
|
|
6346
6352
|
export type JsonApiJwkOutTypeEnum = (typeof JsonApiJwkOutTypeEnum)[keyof typeof JsonApiJwkOutTypeEnum];
|
|
6347
|
-
export interface JsonApiJwkOutAttributes {
|
|
6348
|
-
content?: RsaSpecification;
|
|
6349
|
-
}
|
|
6350
6353
|
export interface JsonApiJwkOutDocument {
|
|
6351
6354
|
data: JsonApiJwkOut;
|
|
6352
6355
|
links?: ObjectLinks;
|
|
@@ -6357,7 +6360,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
6357
6360
|
export interface JsonApiJwkOutList {
|
|
6358
6361
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
6359
6362
|
links?: ListLinks;
|
|
6360
|
-
meta?:
|
|
6363
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6361
6364
|
}
|
|
6362
6365
|
export interface JsonApiJwkOutWithLinks {
|
|
6363
6366
|
/**
|
|
@@ -6368,7 +6371,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
6368
6371
|
* API identifier of an object
|
|
6369
6372
|
*/
|
|
6370
6373
|
id: string;
|
|
6371
|
-
attributes?:
|
|
6374
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6372
6375
|
links?: ObjectLinks;
|
|
6373
6376
|
}
|
|
6374
6377
|
export declare const JsonApiJwkOutWithLinksTypeEnum: {
|
|
@@ -6387,7 +6390,7 @@ export interface JsonApiJwkPatch {
|
|
|
6387
6390
|
* API identifier of an object
|
|
6388
6391
|
*/
|
|
6389
6392
|
id: string;
|
|
6390
|
-
attributes?:
|
|
6393
|
+
attributes?: JsonApiJwkInAttributes;
|
|
6391
6394
|
}
|
|
6392
6395
|
export declare const JsonApiJwkPatchTypeEnum: {
|
|
6393
6396
|
readonly JWK: "jwk";
|
|
@@ -6479,7 +6482,7 @@ export interface JsonApiLabelOutDocument {
|
|
|
6479
6482
|
export interface JsonApiLabelOutList {
|
|
6480
6483
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
6481
6484
|
links?: ListLinks;
|
|
6482
|
-
meta?:
|
|
6485
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6483
6486
|
/**
|
|
6484
6487
|
* Included resources
|
|
6485
6488
|
*/
|
|
@@ -6616,7 +6619,7 @@ export interface JsonApiLlmEndpointOutDocument {
|
|
|
6616
6619
|
export interface JsonApiLlmEndpointOutList {
|
|
6617
6620
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
6618
6621
|
links?: ListLinks;
|
|
6619
|
-
meta?:
|
|
6622
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6620
6623
|
}
|
|
6621
6624
|
export interface JsonApiLlmEndpointOutWithLinks {
|
|
6622
6625
|
/**
|
|
@@ -6698,12 +6701,39 @@ export interface JsonApiMemoryItemIn {
|
|
|
6698
6701
|
* API identifier of an object
|
|
6699
6702
|
*/
|
|
6700
6703
|
id: string;
|
|
6701
|
-
attributes:
|
|
6704
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
6702
6705
|
}
|
|
6703
6706
|
export declare const JsonApiMemoryItemInTypeEnum: {
|
|
6704
6707
|
readonly MEMORY_ITEM: "memoryItem";
|
|
6705
6708
|
};
|
|
6706
6709
|
export type JsonApiMemoryItemInTypeEnum = (typeof JsonApiMemoryItemInTypeEnum)[keyof typeof JsonApiMemoryItemInTypeEnum];
|
|
6710
|
+
export interface JsonApiMemoryItemInAttributes {
|
|
6711
|
+
title?: string;
|
|
6712
|
+
description?: string;
|
|
6713
|
+
tags?: Array<string>;
|
|
6714
|
+
areRelationsValid?: boolean;
|
|
6715
|
+
/**
|
|
6716
|
+
* Strategy defining when the memory item should be applied
|
|
6717
|
+
*/
|
|
6718
|
+
strategy: JsonApiMemoryItemInAttributesStrategyEnum;
|
|
6719
|
+
/**
|
|
6720
|
+
* The text that will be injected into the system prompt
|
|
6721
|
+
*/
|
|
6722
|
+
instruction: string;
|
|
6723
|
+
/**
|
|
6724
|
+
* Set of unique strings used for semantic similarity filtering
|
|
6725
|
+
*/
|
|
6726
|
+
keywords?: Array<string>;
|
|
6727
|
+
/**
|
|
6728
|
+
* Whether memory item is disabled
|
|
6729
|
+
*/
|
|
6730
|
+
isDisabled?: boolean;
|
|
6731
|
+
}
|
|
6732
|
+
export declare const JsonApiMemoryItemInAttributesStrategyEnum: {
|
|
6733
|
+
readonly ALWAYS: "ALWAYS";
|
|
6734
|
+
readonly AUTO: "AUTO";
|
|
6735
|
+
};
|
|
6736
|
+
export type JsonApiMemoryItemInAttributesStrategyEnum = (typeof JsonApiMemoryItemInAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemInAttributesStrategyEnum];
|
|
6707
6737
|
export interface JsonApiMemoryItemInDocument {
|
|
6708
6738
|
data: JsonApiMemoryItemIn;
|
|
6709
6739
|
}
|
|
@@ -6770,7 +6800,7 @@ export interface JsonApiMemoryItemOutDocument {
|
|
|
6770
6800
|
export interface JsonApiMemoryItemOutList {
|
|
6771
6801
|
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
6772
6802
|
links?: ListLinks;
|
|
6773
|
-
meta?:
|
|
6803
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6774
6804
|
/**
|
|
6775
6805
|
* Included resources
|
|
6776
6806
|
*/
|
|
@@ -6854,39 +6884,12 @@ export interface JsonApiMemoryItemPostOptionalId {
|
|
|
6854
6884
|
* API identifier of an object
|
|
6855
6885
|
*/
|
|
6856
6886
|
id?: string;
|
|
6857
|
-
attributes:
|
|
6887
|
+
attributes: JsonApiMemoryItemInAttributes;
|
|
6858
6888
|
}
|
|
6859
6889
|
export declare const JsonApiMemoryItemPostOptionalIdTypeEnum: {
|
|
6860
6890
|
readonly MEMORY_ITEM: "memoryItem";
|
|
6861
6891
|
};
|
|
6862
6892
|
export type JsonApiMemoryItemPostOptionalIdTypeEnum = (typeof JsonApiMemoryItemPostOptionalIdTypeEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdTypeEnum];
|
|
6863
|
-
export interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
6864
|
-
title?: string;
|
|
6865
|
-
description?: string;
|
|
6866
|
-
tags?: Array<string>;
|
|
6867
|
-
areRelationsValid?: boolean;
|
|
6868
|
-
/**
|
|
6869
|
-
* Strategy defining when the memory item should be applied
|
|
6870
|
-
*/
|
|
6871
|
-
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
6872
|
-
/**
|
|
6873
|
-
* The text that will be injected into the system prompt
|
|
6874
|
-
*/
|
|
6875
|
-
instruction: string;
|
|
6876
|
-
/**
|
|
6877
|
-
* Set of unique strings used for semantic similarity filtering
|
|
6878
|
-
*/
|
|
6879
|
-
keywords?: Array<string>;
|
|
6880
|
-
/**
|
|
6881
|
-
* Whether memory item is disabled
|
|
6882
|
-
*/
|
|
6883
|
-
isDisabled?: boolean;
|
|
6884
|
-
}
|
|
6885
|
-
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
6886
|
-
readonly ALWAYS: "ALWAYS";
|
|
6887
|
-
readonly AUTO: "AUTO";
|
|
6888
|
-
};
|
|
6889
|
-
export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
6890
6893
|
export interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
6891
6894
|
data: JsonApiMemoryItemPostOptionalId;
|
|
6892
6895
|
}
|
|
@@ -6902,12 +6905,20 @@ export interface JsonApiMetricIn {
|
|
|
6902
6905
|
* API identifier of an object
|
|
6903
6906
|
*/
|
|
6904
6907
|
id: string;
|
|
6905
|
-
attributes:
|
|
6908
|
+
attributes: JsonApiMetricInAttributes;
|
|
6906
6909
|
}
|
|
6907
6910
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6908
6911
|
readonly METRIC: "metric";
|
|
6909
6912
|
};
|
|
6910
6913
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6914
|
+
export interface JsonApiMetricInAttributes {
|
|
6915
|
+
title?: string;
|
|
6916
|
+
description?: string;
|
|
6917
|
+
tags?: Array<string>;
|
|
6918
|
+
areRelationsValid?: boolean;
|
|
6919
|
+
content: JsonApiMetricOutAttributesContent;
|
|
6920
|
+
isHidden?: boolean;
|
|
6921
|
+
}
|
|
6911
6922
|
export interface JsonApiMetricInDocument {
|
|
6912
6923
|
data: JsonApiMetricIn;
|
|
6913
6924
|
}
|
|
@@ -6974,7 +6985,7 @@ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDat
|
|
|
6974
6985
|
export interface JsonApiMetricOutList {
|
|
6975
6986
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
6976
6987
|
links?: ListLinks;
|
|
6977
|
-
meta?:
|
|
6988
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
6978
6989
|
/**
|
|
6979
6990
|
* Included resources
|
|
6980
6991
|
*/
|
|
@@ -7039,20 +7050,12 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
7039
7050
|
* API identifier of an object
|
|
7040
7051
|
*/
|
|
7041
7052
|
id?: string;
|
|
7042
|
-
attributes:
|
|
7053
|
+
attributes: JsonApiMetricInAttributes;
|
|
7043
7054
|
}
|
|
7044
7055
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
7045
7056
|
readonly METRIC: "metric";
|
|
7046
7057
|
};
|
|
7047
7058
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
7048
|
-
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
7049
|
-
title?: string;
|
|
7050
|
-
description?: string;
|
|
7051
|
-
tags?: Array<string>;
|
|
7052
|
-
areRelationsValid?: boolean;
|
|
7053
|
-
content: JsonApiMetricOutAttributesContent;
|
|
7054
|
-
isHidden?: boolean;
|
|
7055
|
-
}
|
|
7056
7059
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
7057
7060
|
data: JsonApiMetricPostOptionalId;
|
|
7058
7061
|
}
|
|
@@ -7106,7 +7109,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
7106
7109
|
export interface JsonApiNotificationChannelIdentifierOutList {
|
|
7107
7110
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
7108
7111
|
links?: ListLinks;
|
|
7109
|
-
meta?:
|
|
7112
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7110
7113
|
}
|
|
7111
7114
|
export interface JsonApiNotificationChannelIdentifierOutWithLinks {
|
|
7112
7115
|
/**
|
|
@@ -7136,54 +7139,12 @@ export interface JsonApiNotificationChannelIn {
|
|
|
7136
7139
|
* API identifier of an object
|
|
7137
7140
|
*/
|
|
7138
7141
|
id: string;
|
|
7139
|
-
attributes?:
|
|
7142
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7140
7143
|
}
|
|
7141
7144
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
7142
7145
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7143
7146
|
};
|
|
7144
7147
|
export type JsonApiNotificationChannelInTypeEnum = (typeof JsonApiNotificationChannelInTypeEnum)[keyof typeof JsonApiNotificationChannelInTypeEnum];
|
|
7145
|
-
export interface JsonApiNotificationChannelInAttributes {
|
|
7146
|
-
name?: string | null;
|
|
7147
|
-
description?: string | null;
|
|
7148
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
7149
|
-
/**
|
|
7150
|
-
* 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} {automationId} {asOfDate}
|
|
7151
|
-
*/
|
|
7152
|
-
customDashboardUrl?: string;
|
|
7153
|
-
/**
|
|
7154
|
-
* 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
|
|
7155
|
-
*/
|
|
7156
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
7157
|
-
/**
|
|
7158
|
-
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
7159
|
-
*/
|
|
7160
|
-
notificationSource?: string;
|
|
7161
|
-
/**
|
|
7162
|
-
* 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
|
|
7163
|
-
*/
|
|
7164
|
-
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
7165
|
-
/**
|
|
7166
|
-
* 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
|
|
7167
|
-
*/
|
|
7168
|
-
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
7169
|
-
}
|
|
7170
|
-
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
7171
|
-
readonly HIDDEN: "HIDDEN";
|
|
7172
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7173
|
-
readonly ALL: "ALL";
|
|
7174
|
-
};
|
|
7175
|
-
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
7176
|
-
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
7177
|
-
readonly CREATOR: "CREATOR";
|
|
7178
|
-
readonly INTERNAL: "INTERNAL";
|
|
7179
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
7180
|
-
};
|
|
7181
|
-
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
7182
|
-
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
7183
|
-
readonly DISABLED: "DISABLED";
|
|
7184
|
-
readonly ENABLED: "ENABLED";
|
|
7185
|
-
};
|
|
7186
|
-
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
7187
7148
|
export interface JsonApiNotificationChannelInDocument {
|
|
7188
7149
|
data: JsonApiNotificationChannelIn;
|
|
7189
7150
|
}
|
|
@@ -7219,7 +7180,7 @@ export type JsonApiNotificationChannelOutTypeEnum = (typeof JsonApiNotificationC
|
|
|
7219
7180
|
export interface JsonApiNotificationChannelOutAttributes {
|
|
7220
7181
|
name?: string | null;
|
|
7221
7182
|
description?: string | null;
|
|
7222
|
-
destination?:
|
|
7183
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
7223
7184
|
destinationType?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
7224
7185
|
/**
|
|
7225
7186
|
* 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} {automationId} {asOfDate}
|
|
@@ -7266,11 +7227,6 @@ export declare const JsonApiNotificationChannelOutAttributesInPlatformNotificati
|
|
|
7266
7227
|
readonly ENABLED: "ENABLED";
|
|
7267
7228
|
};
|
|
7268
7229
|
export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum];
|
|
7269
|
-
/**
|
|
7270
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
7271
|
-
* The destination where the notifications are to be sent.
|
|
7272
|
-
*/
|
|
7273
|
-
export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
7274
7230
|
export interface JsonApiNotificationChannelOutDocument {
|
|
7275
7231
|
data: JsonApiNotificationChannelOut;
|
|
7276
7232
|
links?: ObjectLinks;
|
|
@@ -7281,7 +7237,7 @@ export interface JsonApiNotificationChannelOutDocument {
|
|
|
7281
7237
|
export interface JsonApiNotificationChannelOutList {
|
|
7282
7238
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
7283
7239
|
links?: ListLinks;
|
|
7284
|
-
meta?:
|
|
7240
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7285
7241
|
}
|
|
7286
7242
|
export interface JsonApiNotificationChannelOutWithLinks {
|
|
7287
7243
|
/**
|
|
@@ -7311,7 +7267,7 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
7311
7267
|
* API identifier of an object
|
|
7312
7268
|
*/
|
|
7313
7269
|
id: string;
|
|
7314
|
-
attributes?:
|
|
7270
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7315
7271
|
}
|
|
7316
7272
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
7317
7273
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -7332,12 +7288,59 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
7332
7288
|
* API identifier of an object
|
|
7333
7289
|
*/
|
|
7334
7290
|
id?: string;
|
|
7335
|
-
attributes?:
|
|
7291
|
+
attributes?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7336
7292
|
}
|
|
7337
7293
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7338
7294
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7339
7295
|
};
|
|
7340
7296
|
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7297
|
+
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
7298
|
+
name?: string | null;
|
|
7299
|
+
description?: string | null;
|
|
7300
|
+
destination?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
7301
|
+
/**
|
|
7302
|
+
* 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} {automationId} {asOfDate}
|
|
7303
|
+
*/
|
|
7304
|
+
customDashboardUrl?: string;
|
|
7305
|
+
/**
|
|
7306
|
+
* 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
|
|
7307
|
+
*/
|
|
7308
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
7309
|
+
/**
|
|
7310
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
7311
|
+
*/
|
|
7312
|
+
notificationSource?: string;
|
|
7313
|
+
/**
|
|
7314
|
+
* 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
|
|
7315
|
+
*/
|
|
7316
|
+
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
7317
|
+
/**
|
|
7318
|
+
* 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
|
|
7319
|
+
*/
|
|
7320
|
+
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
7321
|
+
}
|
|
7322
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
7323
|
+
readonly HIDDEN: "HIDDEN";
|
|
7324
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7325
|
+
readonly ALL: "ALL";
|
|
7326
|
+
};
|
|
7327
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
7328
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
7329
|
+
readonly CREATOR: "CREATOR";
|
|
7330
|
+
readonly INTERNAL: "INTERNAL";
|
|
7331
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
7332
|
+
};
|
|
7333
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
7334
|
+
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
7335
|
+
readonly DISABLED: "DISABLED";
|
|
7336
|
+
readonly ENABLED: "ENABLED";
|
|
7337
|
+
};
|
|
7338
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
7339
|
+
/**
|
|
7340
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
7341
|
+
* The destination where the notifications are to be sent.
|
|
7342
|
+
*/
|
|
7343
|
+
export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
7341
7344
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
7342
7345
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
7343
7346
|
}
|
|
@@ -7353,36 +7356,16 @@ export interface JsonApiOrganizationIn {
|
|
|
7353
7356
|
* API identifier of an object
|
|
7354
7357
|
*/
|
|
7355
7358
|
id: string;
|
|
7356
|
-
attributes?:
|
|
7357
|
-
relationships?:
|
|
7359
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7360
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7358
7361
|
}
|
|
7359
7362
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7360
7363
|
readonly ORGANIZATION: "organization";
|
|
7361
7364
|
};
|
|
7362
7365
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7363
|
-
export interface JsonApiOrganizationInAttributes {
|
|
7364
|
-
name?: string | null;
|
|
7365
|
-
hostname?: string;
|
|
7366
|
-
allowedOrigins?: Array<string>;
|
|
7367
|
-
/**
|
|
7368
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7369
|
-
* @deprecated
|
|
7370
|
-
*/
|
|
7371
|
-
earlyAccess?: string | null;
|
|
7372
|
-
/**
|
|
7373
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7374
|
-
*/
|
|
7375
|
-
earlyAccessValues?: Array<string> | null;
|
|
7376
|
-
}
|
|
7377
7366
|
export interface JsonApiOrganizationInDocument {
|
|
7378
7367
|
data: JsonApiOrganizationIn;
|
|
7379
7368
|
}
|
|
7380
|
-
export interface JsonApiOrganizationInRelationships {
|
|
7381
|
-
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7382
|
-
}
|
|
7383
|
-
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7384
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7385
|
-
}
|
|
7386
7369
|
/**
|
|
7387
7370
|
* JSON:API representation of organization entity.
|
|
7388
7371
|
*/
|
|
@@ -7451,15 +7434,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
7451
7434
|
};
|
|
7452
7435
|
export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
7453
7436
|
export interface JsonApiOrganizationOutRelationships {
|
|
7454
|
-
bootstrapUser?:
|
|
7455
|
-
bootstrapUserGroup?:
|
|
7456
|
-
identityProvider?:
|
|
7457
|
-
}
|
|
7458
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7459
|
-
data: JsonApiUserLinkage | null;
|
|
7460
|
-
}
|
|
7461
|
-
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7462
|
-
data: JsonApiUserGroupLinkage | null;
|
|
7437
|
+
bootstrapUser?: JsonApiFilterViewInRelationshipsUser;
|
|
7438
|
+
bootstrapUserGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7439
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7463
7440
|
}
|
|
7464
7441
|
/**
|
|
7465
7442
|
* JSON:API representation of patching organization entity.
|
|
@@ -7473,16 +7450,36 @@ export interface JsonApiOrganizationPatch {
|
|
|
7473
7450
|
* API identifier of an object
|
|
7474
7451
|
*/
|
|
7475
7452
|
id: string;
|
|
7476
|
-
attributes?:
|
|
7477
|
-
relationships?:
|
|
7453
|
+
attributes?: JsonApiOrganizationPatchAttributes;
|
|
7454
|
+
relationships?: JsonApiOrganizationPatchRelationships;
|
|
7478
7455
|
}
|
|
7479
7456
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7480
7457
|
readonly ORGANIZATION: "organization";
|
|
7481
7458
|
};
|
|
7482
7459
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
7460
|
+
export interface JsonApiOrganizationPatchAttributes {
|
|
7461
|
+
name?: string | null;
|
|
7462
|
+
hostname?: string;
|
|
7463
|
+
allowedOrigins?: Array<string>;
|
|
7464
|
+
/**
|
|
7465
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7466
|
+
* @deprecated
|
|
7467
|
+
*/
|
|
7468
|
+
earlyAccess?: string | null;
|
|
7469
|
+
/**
|
|
7470
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7471
|
+
*/
|
|
7472
|
+
earlyAccessValues?: Array<string> | null;
|
|
7473
|
+
}
|
|
7483
7474
|
export interface JsonApiOrganizationPatchDocument {
|
|
7484
7475
|
data: JsonApiOrganizationPatch;
|
|
7485
7476
|
}
|
|
7477
|
+
export interface JsonApiOrganizationPatchRelationships {
|
|
7478
|
+
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7479
|
+
}
|
|
7480
|
+
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
7481
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7482
|
+
}
|
|
7486
7483
|
/**
|
|
7487
7484
|
* JSON:API representation of organizationSetting entity.
|
|
7488
7485
|
*/
|
|
@@ -7495,12 +7492,55 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7495
7492
|
* API identifier of an object
|
|
7496
7493
|
*/
|
|
7497
7494
|
id: string;
|
|
7498
|
-
attributes?:
|
|
7495
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7499
7496
|
}
|
|
7500
7497
|
export declare const JsonApiOrganizationSettingInTypeEnum: {
|
|
7501
7498
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
7502
7499
|
};
|
|
7503
7500
|
export type JsonApiOrganizationSettingInTypeEnum = (typeof JsonApiOrganizationSettingInTypeEnum)[keyof typeof JsonApiOrganizationSettingInTypeEnum];
|
|
7501
|
+
export interface JsonApiOrganizationSettingInAttributes {
|
|
7502
|
+
/**
|
|
7503
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7504
|
+
*/
|
|
7505
|
+
content?: object;
|
|
7506
|
+
type?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7507
|
+
}
|
|
7508
|
+
export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
7509
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
7510
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
7511
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
7512
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
7513
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
7514
|
+
readonly LOCALE: "LOCALE";
|
|
7515
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
7516
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
7517
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
7518
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
7519
|
+
readonly WEEK_START: "WEEK_START";
|
|
7520
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
7521
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
7522
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
7523
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
7524
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
7525
|
+
readonly ALERT: "ALERT";
|
|
7526
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
7527
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
7528
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
7529
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
7530
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
7531
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
7532
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
7533
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
7534
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
7535
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
7536
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
7537
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
7538
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
7539
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
7540
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
7541
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
7542
|
+
};
|
|
7543
|
+
export type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
7504
7544
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7505
7545
|
data: JsonApiOrganizationSettingIn;
|
|
7506
7546
|
}
|
|
@@ -7516,7 +7556,7 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7516
7556
|
* API identifier of an object
|
|
7517
7557
|
*/
|
|
7518
7558
|
id: string;
|
|
7519
|
-
attributes?:
|
|
7559
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7520
7560
|
}
|
|
7521
7561
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
7522
7562
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7532,7 +7572,7 @@ export interface JsonApiOrganizationSettingOutDocument {
|
|
|
7532
7572
|
export interface JsonApiOrganizationSettingOutList {
|
|
7533
7573
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
7534
7574
|
links?: ListLinks;
|
|
7535
|
-
meta?:
|
|
7575
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7536
7576
|
}
|
|
7537
7577
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7538
7578
|
/**
|
|
@@ -7543,7 +7583,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7543
7583
|
* API identifier of an object
|
|
7544
7584
|
*/
|
|
7545
7585
|
id: string;
|
|
7546
|
-
attributes?:
|
|
7586
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7547
7587
|
links?: ObjectLinks;
|
|
7548
7588
|
}
|
|
7549
7589
|
export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
|
|
@@ -7562,7 +7602,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7562
7602
|
* API identifier of an object
|
|
7563
7603
|
*/
|
|
7564
7604
|
id: string;
|
|
7565
|
-
attributes?:
|
|
7605
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
7566
7606
|
}
|
|
7567
7607
|
export declare const JsonApiOrganizationSettingPatchTypeEnum: {
|
|
7568
7608
|
readonly ORGANIZATION_SETTING: "organizationSetting";
|
|
@@ -7583,7 +7623,7 @@ export interface JsonApiThemeIn {
|
|
|
7583
7623
|
* API identifier of an object
|
|
7584
7624
|
*/
|
|
7585
7625
|
id: string;
|
|
7586
|
-
attributes:
|
|
7626
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7587
7627
|
}
|
|
7588
7628
|
export declare const JsonApiThemeInTypeEnum: {
|
|
7589
7629
|
readonly THEME: "theme";
|
|
@@ -7604,7 +7644,7 @@ export interface JsonApiThemeOut {
|
|
|
7604
7644
|
* API identifier of an object
|
|
7605
7645
|
*/
|
|
7606
7646
|
id: string;
|
|
7607
|
-
attributes:
|
|
7647
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7608
7648
|
}
|
|
7609
7649
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
7610
7650
|
readonly THEME: "theme";
|
|
@@ -7620,7 +7660,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7620
7660
|
export interface JsonApiThemeOutList {
|
|
7621
7661
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
7622
7662
|
links?: ListLinks;
|
|
7623
|
-
meta?:
|
|
7663
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7624
7664
|
}
|
|
7625
7665
|
export interface JsonApiThemeOutWithLinks {
|
|
7626
7666
|
/**
|
|
@@ -7631,7 +7671,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
7631
7671
|
* API identifier of an object
|
|
7632
7672
|
*/
|
|
7633
7673
|
id: string;
|
|
7634
|
-
attributes:
|
|
7674
|
+
attributes: JsonApiColorPaletteInAttributes;
|
|
7635
7675
|
links?: ObjectLinks;
|
|
7636
7676
|
}
|
|
7637
7677
|
export declare const JsonApiThemeOutWithLinksTypeEnum: {
|
|
@@ -7671,16 +7711,30 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7671
7711
|
* API identifier of an object
|
|
7672
7712
|
*/
|
|
7673
7713
|
id: string;
|
|
7674
|
-
attributes:
|
|
7675
|
-
relationships?:
|
|
7714
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7715
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7676
7716
|
}
|
|
7677
7717
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7678
7718
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7679
7719
|
};
|
|
7680
7720
|
export type JsonApiUserDataFilterInTypeEnum = (typeof JsonApiUserDataFilterInTypeEnum)[keyof typeof JsonApiUserDataFilterInTypeEnum];
|
|
7721
|
+
export interface JsonApiUserDataFilterInAttributes {
|
|
7722
|
+
title?: string;
|
|
7723
|
+
description?: string;
|
|
7724
|
+
tags?: Array<string>;
|
|
7725
|
+
areRelationsValid?: boolean;
|
|
7726
|
+
maql: string;
|
|
7727
|
+
}
|
|
7681
7728
|
export interface JsonApiUserDataFilterInDocument {
|
|
7682
7729
|
data: JsonApiUserDataFilterIn;
|
|
7683
7730
|
}
|
|
7731
|
+
export interface JsonApiUserDataFilterInRelationships {
|
|
7732
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
7733
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7734
|
+
}
|
|
7735
|
+
export interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
7736
|
+
data: JsonApiUserGroupLinkage | null;
|
|
7737
|
+
}
|
|
7684
7738
|
/**
|
|
7685
7739
|
* JSON:API representation of userDataFilter entity.
|
|
7686
7740
|
*/
|
|
@@ -7694,7 +7748,7 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7694
7748
|
*/
|
|
7695
7749
|
id: string;
|
|
7696
7750
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7697
|
-
attributes:
|
|
7751
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7698
7752
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7699
7753
|
}
|
|
7700
7754
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -7719,15 +7773,15 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
7719
7773
|
export interface JsonApiUserDataFilterOutList {
|
|
7720
7774
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
7721
7775
|
links?: ListLinks;
|
|
7722
|
-
meta?:
|
|
7776
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7723
7777
|
/**
|
|
7724
7778
|
* Included resources
|
|
7725
7779
|
*/
|
|
7726
7780
|
included?: Array<JsonApiUserDataFilterOutIncludes>;
|
|
7727
7781
|
}
|
|
7728
7782
|
export interface JsonApiUserDataFilterOutRelationships {
|
|
7729
|
-
user?:
|
|
7730
|
-
userGroup?:
|
|
7783
|
+
user?: JsonApiFilterViewInRelationshipsUser;
|
|
7784
|
+
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
7731
7785
|
facts?: JsonApiVisualizationObjectOutRelationshipsFacts;
|
|
7732
7786
|
attributes?: JsonApiVisualizationObjectOutRelationshipsAttributes;
|
|
7733
7787
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
@@ -7744,7 +7798,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7744
7798
|
*/
|
|
7745
7799
|
id: string;
|
|
7746
7800
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7747
|
-
attributes:
|
|
7801
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7748
7802
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7749
7803
|
links?: ObjectLinks;
|
|
7750
7804
|
}
|
|
@@ -7765,7 +7819,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7765
7819
|
*/
|
|
7766
7820
|
id: string;
|
|
7767
7821
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7768
|
-
relationships?:
|
|
7822
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7769
7823
|
}
|
|
7770
7824
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7771
7825
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7793,27 +7847,16 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7793
7847
|
* API identifier of an object
|
|
7794
7848
|
*/
|
|
7795
7849
|
id?: string;
|
|
7796
|
-
attributes:
|
|
7797
|
-
relationships?:
|
|
7850
|
+
attributes: JsonApiUserDataFilterInAttributes;
|
|
7851
|
+
relationships?: JsonApiUserDataFilterInRelationships;
|
|
7798
7852
|
}
|
|
7799
7853
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7800
7854
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7801
7855
|
};
|
|
7802
7856
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
|
|
7803
|
-
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
7804
|
-
title?: string;
|
|
7805
|
-
description?: string;
|
|
7806
|
-
tags?: Array<string>;
|
|
7807
|
-
areRelationsValid?: boolean;
|
|
7808
|
-
maql: string;
|
|
7809
|
-
}
|
|
7810
7857
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7811
7858
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7812
7859
|
}
|
|
7813
|
-
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7814
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7815
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7816
|
-
}
|
|
7817
7860
|
/**
|
|
7818
7861
|
* JSON:API representation of userGroup entity.
|
|
7819
7862
|
*/
|
|
@@ -7826,16 +7869,28 @@ export interface JsonApiUserGroupIn {
|
|
|
7826
7869
|
* API identifier of an object
|
|
7827
7870
|
*/
|
|
7828
7871
|
id: string;
|
|
7829
|
-
attributes?:
|
|
7830
|
-
relationships?:
|
|
7872
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7873
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7831
7874
|
}
|
|
7832
7875
|
export declare const JsonApiUserGroupInTypeEnum: {
|
|
7833
7876
|
readonly USER_GROUP: "userGroup";
|
|
7834
7877
|
};
|
|
7835
7878
|
export type JsonApiUserGroupInTypeEnum = (typeof JsonApiUserGroupInTypeEnum)[keyof typeof JsonApiUserGroupInTypeEnum];
|
|
7879
|
+
export interface JsonApiUserGroupInAttributes {
|
|
7880
|
+
name?: string;
|
|
7881
|
+
}
|
|
7836
7882
|
export interface JsonApiUserGroupInDocument {
|
|
7837
7883
|
data: JsonApiUserGroupIn;
|
|
7838
7884
|
}
|
|
7885
|
+
export interface JsonApiUserGroupInRelationships {
|
|
7886
|
+
parents?: JsonApiUserGroupInRelationshipsParents;
|
|
7887
|
+
}
|
|
7888
|
+
export interface JsonApiUserGroupInRelationshipsParents {
|
|
7889
|
+
/**
|
|
7890
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
7891
|
+
*/
|
|
7892
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
7893
|
+
}
|
|
7839
7894
|
/**
|
|
7840
7895
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
7841
7896
|
*/
|
|
@@ -7859,16 +7914,13 @@ export interface JsonApiUserGroupOut {
|
|
|
7859
7914
|
* API identifier of an object
|
|
7860
7915
|
*/
|
|
7861
7916
|
id: string;
|
|
7862
|
-
attributes?:
|
|
7863
|
-
relationships?:
|
|
7917
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7918
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7864
7919
|
}
|
|
7865
7920
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
7866
7921
|
readonly USER_GROUP: "userGroup";
|
|
7867
7922
|
};
|
|
7868
7923
|
export type JsonApiUserGroupOutTypeEnum = (typeof JsonApiUserGroupOutTypeEnum)[keyof typeof JsonApiUserGroupOutTypeEnum];
|
|
7869
|
-
export interface JsonApiUserGroupOutAttributes {
|
|
7870
|
-
name?: string;
|
|
7871
|
-
}
|
|
7872
7924
|
export interface JsonApiUserGroupOutDocument {
|
|
7873
7925
|
data: JsonApiUserGroupOut;
|
|
7874
7926
|
links?: ObjectLinks;
|
|
@@ -7883,15 +7935,12 @@ export interface JsonApiUserGroupOutDocument {
|
|
|
7883
7935
|
export interface JsonApiUserGroupOutList {
|
|
7884
7936
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
7885
7937
|
links?: ListLinks;
|
|
7886
|
-
meta?:
|
|
7938
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7887
7939
|
/**
|
|
7888
7940
|
* Included resources
|
|
7889
7941
|
*/
|
|
7890
7942
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
7891
7943
|
}
|
|
7892
|
-
export interface JsonApiUserGroupOutRelationships {
|
|
7893
|
-
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
7894
|
-
}
|
|
7895
7944
|
export interface JsonApiUserGroupOutWithLinks {
|
|
7896
7945
|
/**
|
|
7897
7946
|
* Object type
|
|
@@ -7901,8 +7950,8 @@ export interface JsonApiUserGroupOutWithLinks {
|
|
|
7901
7950
|
* API identifier of an object
|
|
7902
7951
|
*/
|
|
7903
7952
|
id: string;
|
|
7904
|
-
attributes?:
|
|
7905
|
-
relationships?:
|
|
7953
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7954
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7906
7955
|
links?: ObjectLinks;
|
|
7907
7956
|
}
|
|
7908
7957
|
export declare const JsonApiUserGroupOutWithLinksTypeEnum: {
|
|
@@ -7921,8 +7970,8 @@ export interface JsonApiUserGroupPatch {
|
|
|
7921
7970
|
* API identifier of an object
|
|
7922
7971
|
*/
|
|
7923
7972
|
id: string;
|
|
7924
|
-
attributes?:
|
|
7925
|
-
relationships?:
|
|
7973
|
+
attributes?: JsonApiUserGroupInAttributes;
|
|
7974
|
+
relationships?: JsonApiUserGroupInRelationships;
|
|
7926
7975
|
}
|
|
7927
7976
|
export declare const JsonApiUserGroupPatchTypeEnum: {
|
|
7928
7977
|
readonly USER_GROUP: "userGroup";
|
|
@@ -7975,7 +8024,7 @@ export interface JsonApiUserIdentifierOutDocument {
|
|
|
7975
8024
|
export interface JsonApiUserIdentifierOutList {
|
|
7976
8025
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7977
8026
|
links?: ListLinks;
|
|
7978
|
-
meta?:
|
|
8027
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
7979
8028
|
}
|
|
7980
8029
|
export interface JsonApiUserIdentifierOutWithLinks {
|
|
7981
8030
|
/**
|
|
@@ -8005,16 +8054,25 @@ export interface JsonApiUserIn {
|
|
|
8005
8054
|
* API identifier of an object
|
|
8006
8055
|
*/
|
|
8007
8056
|
id: string;
|
|
8008
|
-
attributes?:
|
|
8009
|
-
relationships?:
|
|
8057
|
+
attributes?: JsonApiUserInAttributes;
|
|
8058
|
+
relationships?: JsonApiUserInRelationships;
|
|
8010
8059
|
}
|
|
8011
8060
|
export declare const JsonApiUserInTypeEnum: {
|
|
8012
8061
|
readonly USER: "user";
|
|
8013
8062
|
};
|
|
8014
8063
|
export type JsonApiUserInTypeEnum = (typeof JsonApiUserInTypeEnum)[keyof typeof JsonApiUserInTypeEnum];
|
|
8064
|
+
export interface JsonApiUserInAttributes {
|
|
8065
|
+
authenticationId?: string;
|
|
8066
|
+
firstname?: string;
|
|
8067
|
+
lastname?: string;
|
|
8068
|
+
email?: string;
|
|
8069
|
+
}
|
|
8015
8070
|
export interface JsonApiUserInDocument {
|
|
8016
8071
|
data: JsonApiUserIn;
|
|
8017
8072
|
}
|
|
8073
|
+
export interface JsonApiUserInRelationships {
|
|
8074
|
+
userGroups?: JsonApiUserGroupInRelationshipsParents;
|
|
8075
|
+
}
|
|
8018
8076
|
/**
|
|
8019
8077
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8020
8078
|
*/
|
|
@@ -8038,19 +8096,13 @@ export interface JsonApiUserOut {
|
|
|
8038
8096
|
* API identifier of an object
|
|
8039
8097
|
*/
|
|
8040
8098
|
id: string;
|
|
8041
|
-
attributes?:
|
|
8042
|
-
relationships?:
|
|
8099
|
+
attributes?: JsonApiUserInAttributes;
|
|
8100
|
+
relationships?: JsonApiUserInRelationships;
|
|
8043
8101
|
}
|
|
8044
8102
|
export declare const JsonApiUserOutTypeEnum: {
|
|
8045
8103
|
readonly USER: "user";
|
|
8046
8104
|
};
|
|
8047
8105
|
export type JsonApiUserOutTypeEnum = (typeof JsonApiUserOutTypeEnum)[keyof typeof JsonApiUserOutTypeEnum];
|
|
8048
|
-
export interface JsonApiUserOutAttributes {
|
|
8049
|
-
authenticationId?: string;
|
|
8050
|
-
firstname?: string;
|
|
8051
|
-
lastname?: string;
|
|
8052
|
-
email?: string;
|
|
8053
|
-
}
|
|
8054
8106
|
export interface JsonApiUserOutDocument {
|
|
8055
8107
|
data: JsonApiUserOut;
|
|
8056
8108
|
links?: ObjectLinks;
|
|
@@ -8065,21 +8117,12 @@ export interface JsonApiUserOutDocument {
|
|
|
8065
8117
|
export interface JsonApiUserOutList {
|
|
8066
8118
|
data: Array<JsonApiUserOutWithLinks>;
|
|
8067
8119
|
links?: ListLinks;
|
|
8068
|
-
meta?:
|
|
8120
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8069
8121
|
/**
|
|
8070
8122
|
* Included resources
|
|
8071
8123
|
*/
|
|
8072
8124
|
included?: Array<JsonApiUserGroupOutWithLinks>;
|
|
8073
8125
|
}
|
|
8074
|
-
export interface JsonApiUserOutRelationships {
|
|
8075
|
-
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
8076
|
-
}
|
|
8077
|
-
export interface JsonApiUserOutRelationshipsUserGroups {
|
|
8078
|
-
/**
|
|
8079
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
8080
|
-
*/
|
|
8081
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
8082
|
-
}
|
|
8083
8126
|
export interface JsonApiUserOutWithLinks {
|
|
8084
8127
|
/**
|
|
8085
8128
|
* Object type
|
|
@@ -8089,8 +8132,8 @@ export interface JsonApiUserOutWithLinks {
|
|
|
8089
8132
|
* API identifier of an object
|
|
8090
8133
|
*/
|
|
8091
8134
|
id: string;
|
|
8092
|
-
attributes?:
|
|
8093
|
-
relationships?:
|
|
8135
|
+
attributes?: JsonApiUserInAttributes;
|
|
8136
|
+
relationships?: JsonApiUserInRelationships;
|
|
8094
8137
|
links?: ObjectLinks;
|
|
8095
8138
|
}
|
|
8096
8139
|
export declare const JsonApiUserOutWithLinksTypeEnum: {
|
|
@@ -8109,8 +8152,8 @@ export interface JsonApiUserPatch {
|
|
|
8109
8152
|
* API identifier of an object
|
|
8110
8153
|
*/
|
|
8111
8154
|
id: string;
|
|
8112
|
-
attributes?:
|
|
8113
|
-
relationships?:
|
|
8155
|
+
attributes?: JsonApiUserInAttributes;
|
|
8156
|
+
relationships?: JsonApiUserInRelationships;
|
|
8114
8157
|
}
|
|
8115
8158
|
export declare const JsonApiUserPatchTypeEnum: {
|
|
8116
8159
|
readonly USER: "user";
|
|
@@ -8131,55 +8174,12 @@ export interface JsonApiUserSettingIn {
|
|
|
8131
8174
|
* API identifier of an object
|
|
8132
8175
|
*/
|
|
8133
8176
|
id: string;
|
|
8134
|
-
attributes?:
|
|
8177
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8135
8178
|
}
|
|
8136
8179
|
export declare const JsonApiUserSettingInTypeEnum: {
|
|
8137
8180
|
readonly USER_SETTING: "userSetting";
|
|
8138
8181
|
};
|
|
8139
8182
|
export type JsonApiUserSettingInTypeEnum = (typeof JsonApiUserSettingInTypeEnum)[keyof typeof JsonApiUserSettingInTypeEnum];
|
|
8140
|
-
export interface JsonApiUserSettingInAttributes {
|
|
8141
|
-
/**
|
|
8142
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
8143
|
-
*/
|
|
8144
|
-
content?: object;
|
|
8145
|
-
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
8146
|
-
}
|
|
8147
|
-
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
8148
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
8149
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
8150
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
8151
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
8152
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
8153
|
-
readonly LOCALE: "LOCALE";
|
|
8154
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
8155
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
8156
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
8157
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
8158
|
-
readonly WEEK_START: "WEEK_START";
|
|
8159
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
8160
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
8161
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
8162
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
8163
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
8164
|
-
readonly ALERT: "ALERT";
|
|
8165
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
8166
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
8167
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
8168
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
8169
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
8170
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
8171
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
8172
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
8173
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
8174
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
8175
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
8176
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
8177
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
8178
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
8179
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
8180
|
-
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
8181
|
-
};
|
|
8182
|
-
export type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
8183
8183
|
export interface JsonApiUserSettingInDocument {
|
|
8184
8184
|
data: JsonApiUserSettingIn;
|
|
8185
8185
|
}
|
|
@@ -8195,7 +8195,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8195
8195
|
* API identifier of an object
|
|
8196
8196
|
*/
|
|
8197
8197
|
id: string;
|
|
8198
|
-
attributes?:
|
|
8198
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8199
8199
|
}
|
|
8200
8200
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
8201
8201
|
readonly USER_SETTING: "userSetting";
|
|
@@ -8211,7 +8211,7 @@ export interface JsonApiUserSettingOutDocument {
|
|
|
8211
8211
|
export interface JsonApiUserSettingOutList {
|
|
8212
8212
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
8213
8213
|
links?: ListLinks;
|
|
8214
|
-
meta?:
|
|
8214
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8215
8215
|
}
|
|
8216
8216
|
export interface JsonApiUserSettingOutWithLinks {
|
|
8217
8217
|
/**
|
|
@@ -8222,7 +8222,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8222
8222
|
* API identifier of an object
|
|
8223
8223
|
*/
|
|
8224
8224
|
id: string;
|
|
8225
|
-
attributes?:
|
|
8225
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8226
8226
|
links?: ObjectLinks;
|
|
8227
8227
|
}
|
|
8228
8228
|
export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
|
|
@@ -8241,12 +8241,23 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
8241
8241
|
* API identifier of an object
|
|
8242
8242
|
*/
|
|
8243
8243
|
id: string;
|
|
8244
|
-
attributes:
|
|
8244
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8245
8245
|
}
|
|
8246
8246
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
8247
8247
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8248
8248
|
};
|
|
8249
8249
|
export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
|
|
8250
|
+
export interface JsonApiVisualizationObjectInAttributes {
|
|
8251
|
+
title?: string;
|
|
8252
|
+
description?: string;
|
|
8253
|
+
tags?: Array<string>;
|
|
8254
|
+
areRelationsValid?: boolean;
|
|
8255
|
+
/**
|
|
8256
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8257
|
+
*/
|
|
8258
|
+
content: object;
|
|
8259
|
+
isHidden?: boolean;
|
|
8260
|
+
}
|
|
8250
8261
|
export interface JsonApiVisualizationObjectInDocument {
|
|
8251
8262
|
data: JsonApiVisualizationObjectIn;
|
|
8252
8263
|
}
|
|
@@ -8308,7 +8319,7 @@ export interface JsonApiVisualizationObjectOutDocument {
|
|
|
8308
8319
|
export interface JsonApiVisualizationObjectOutList {
|
|
8309
8320
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
8310
8321
|
links?: ListLinks;
|
|
8311
|
-
meta?:
|
|
8322
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8312
8323
|
/**
|
|
8313
8324
|
* Included resources
|
|
8314
8325
|
*/
|
|
@@ -8436,23 +8447,12 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8436
8447
|
* API identifier of an object
|
|
8437
8448
|
*/
|
|
8438
8449
|
id?: string;
|
|
8439
|
-
attributes:
|
|
8450
|
+
attributes: JsonApiVisualizationObjectInAttributes;
|
|
8440
8451
|
}
|
|
8441
8452
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8442
8453
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8443
8454
|
};
|
|
8444
8455
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
|
|
8445
|
-
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
8446
|
-
title?: string;
|
|
8447
|
-
description?: string;
|
|
8448
|
-
tags?: Array<string>;
|
|
8449
|
-
areRelationsValid?: boolean;
|
|
8450
|
-
/**
|
|
8451
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8452
|
-
*/
|
|
8453
|
-
content: object;
|
|
8454
|
-
isHidden?: boolean;
|
|
8455
|
-
}
|
|
8456
8456
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
8457
8457
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
8458
8458
|
}
|
|
@@ -8485,14 +8485,14 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
|
|
|
8485
8485
|
export interface JsonApiWorkspaceAutomationOutList {
|
|
8486
8486
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
8487
8487
|
links?: ListLinks;
|
|
8488
|
-
meta?:
|
|
8488
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8489
8489
|
/**
|
|
8490
8490
|
* Included resources
|
|
8491
8491
|
*/
|
|
8492
8492
|
included?: Array<JsonApiWorkspaceAutomationOutIncludes>;
|
|
8493
8493
|
}
|
|
8494
8494
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8495
|
-
workspace?:
|
|
8495
|
+
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
8496
8496
|
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
8497
8497
|
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
8498
8498
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -8590,7 +8590,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
8590
8590
|
export interface JsonApiWorkspaceDataFilterOutList {
|
|
8591
8591
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8592
8592
|
links?: ListLinks;
|
|
8593
|
-
meta?:
|
|
8593
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8594
8594
|
/**
|
|
8595
8595
|
* Included resources
|
|
8596
8596
|
*/
|
|
@@ -8723,7 +8723,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8723
8723
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8724
8724
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8725
8725
|
links?: ListLinks;
|
|
8726
|
-
meta?:
|
|
8726
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8727
8727
|
/**
|
|
8728
8728
|
* Included resources
|
|
8729
8729
|
*/
|
|
@@ -8781,16 +8781,54 @@ export interface JsonApiWorkspaceIn {
|
|
|
8781
8781
|
* API identifier of an object
|
|
8782
8782
|
*/
|
|
8783
8783
|
id: string;
|
|
8784
|
-
attributes?:
|
|
8785
|
-
relationships?:
|
|
8784
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8785
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8786
8786
|
}
|
|
8787
8787
|
export declare const JsonApiWorkspaceInTypeEnum: {
|
|
8788
8788
|
readonly WORKSPACE: "workspace";
|
|
8789
8789
|
};
|
|
8790
8790
|
export type JsonApiWorkspaceInTypeEnum = (typeof JsonApiWorkspaceInTypeEnum)[keyof typeof JsonApiWorkspaceInTypeEnum];
|
|
8791
|
+
export interface JsonApiWorkspaceInAttributes {
|
|
8792
|
+
name?: string | null;
|
|
8793
|
+
/**
|
|
8794
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8795
|
+
* @deprecated
|
|
8796
|
+
*/
|
|
8797
|
+
earlyAccess?: string | null;
|
|
8798
|
+
/**
|
|
8799
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
8800
|
+
*/
|
|
8801
|
+
earlyAccessValues?: Array<string> | null;
|
|
8802
|
+
description?: string | null;
|
|
8803
|
+
/**
|
|
8804
|
+
* Custom prefix of entity identifiers in workspace
|
|
8805
|
+
*/
|
|
8806
|
+
prefix?: string | null;
|
|
8807
|
+
cacheExtraLimit?: number;
|
|
8808
|
+
dataSource?: JsonApiWorkspaceInAttributesDataSource;
|
|
8809
|
+
}
|
|
8810
|
+
/**
|
|
8811
|
+
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
8812
|
+
*/
|
|
8813
|
+
export interface JsonApiWorkspaceInAttributesDataSource {
|
|
8814
|
+
/**
|
|
8815
|
+
* The ID of the used data source.
|
|
8816
|
+
*/
|
|
8817
|
+
id: string;
|
|
8818
|
+
/**
|
|
8819
|
+
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8820
|
+
*/
|
|
8821
|
+
schemaPath?: Array<string>;
|
|
8822
|
+
}
|
|
8791
8823
|
export interface JsonApiWorkspaceInDocument {
|
|
8792
8824
|
data: JsonApiWorkspaceIn;
|
|
8793
8825
|
}
|
|
8826
|
+
export interface JsonApiWorkspaceInRelationships {
|
|
8827
|
+
parent?: JsonApiWorkspaceInRelationshipsParent;
|
|
8828
|
+
}
|
|
8829
|
+
export interface JsonApiWorkspaceInRelationshipsParent {
|
|
8830
|
+
data: JsonApiWorkspaceLinkage | null;
|
|
8831
|
+
}
|
|
8794
8832
|
/**
|
|
8795
8833
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8796
8834
|
*/
|
|
@@ -8815,45 +8853,13 @@ export interface JsonApiWorkspaceOut {
|
|
|
8815
8853
|
*/
|
|
8816
8854
|
id: string;
|
|
8817
8855
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8818
|
-
attributes?:
|
|
8819
|
-
relationships?:
|
|
8856
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8857
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8820
8858
|
}
|
|
8821
8859
|
export declare const JsonApiWorkspaceOutTypeEnum: {
|
|
8822
8860
|
readonly WORKSPACE: "workspace";
|
|
8823
8861
|
};
|
|
8824
8862
|
export type JsonApiWorkspaceOutTypeEnum = (typeof JsonApiWorkspaceOutTypeEnum)[keyof typeof JsonApiWorkspaceOutTypeEnum];
|
|
8825
|
-
export interface JsonApiWorkspaceOutAttributes {
|
|
8826
|
-
name?: string | null;
|
|
8827
|
-
/**
|
|
8828
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
8829
|
-
* @deprecated
|
|
8830
|
-
*/
|
|
8831
|
-
earlyAccess?: string | null;
|
|
8832
|
-
/**
|
|
8833
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
8834
|
-
*/
|
|
8835
|
-
earlyAccessValues?: Array<string> | null;
|
|
8836
|
-
description?: string | null;
|
|
8837
|
-
/**
|
|
8838
|
-
* Custom prefix of entity identifiers in workspace
|
|
8839
|
-
*/
|
|
8840
|
-
prefix?: string | null;
|
|
8841
|
-
cacheExtraLimit?: number;
|
|
8842
|
-
dataSource?: JsonApiWorkspaceOutAttributesDataSource;
|
|
8843
|
-
}
|
|
8844
|
-
/**
|
|
8845
|
-
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
8846
|
-
*/
|
|
8847
|
-
export interface JsonApiWorkspaceOutAttributesDataSource {
|
|
8848
|
-
/**
|
|
8849
|
-
* The ID of the used data source.
|
|
8850
|
-
*/
|
|
8851
|
-
id: string;
|
|
8852
|
-
/**
|
|
8853
|
-
* The full schema path as array of its path parts. Will be rendered as subPath1.subPath2...
|
|
8854
|
-
*/
|
|
8855
|
-
schemaPath?: Array<string>;
|
|
8856
|
-
}
|
|
8857
8863
|
export interface JsonApiWorkspaceOutDocument {
|
|
8858
8864
|
data: JsonApiWorkspaceOut;
|
|
8859
8865
|
links?: ObjectLinks;
|
|
@@ -8868,7 +8874,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8868
8874
|
export interface JsonApiWorkspaceOutList {
|
|
8869
8875
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
8870
8876
|
links?: ListLinks;
|
|
8871
|
-
meta?:
|
|
8877
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
8872
8878
|
/**
|
|
8873
8879
|
* Included resources
|
|
8874
8880
|
*/
|
|
@@ -8921,12 +8927,6 @@ export interface JsonApiWorkspaceOutMetaHierarchy {
|
|
|
8921
8927
|
*/
|
|
8922
8928
|
childrenCount: number;
|
|
8923
8929
|
}
|
|
8924
|
-
export interface JsonApiWorkspaceOutRelationships {
|
|
8925
|
-
parent?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8926
|
-
}
|
|
8927
|
-
export interface JsonApiWorkspaceOutRelationshipsParent {
|
|
8928
|
-
data: JsonApiWorkspaceLinkage | null;
|
|
8929
|
-
}
|
|
8930
8930
|
export interface JsonApiWorkspaceOutWithLinks {
|
|
8931
8931
|
/**
|
|
8932
8932
|
* Object type
|
|
@@ -8937,8 +8937,8 @@ export interface JsonApiWorkspaceOutWithLinks {
|
|
|
8937
8937
|
*/
|
|
8938
8938
|
id: string;
|
|
8939
8939
|
meta?: JsonApiWorkspaceOutMeta;
|
|
8940
|
-
attributes?:
|
|
8941
|
-
relationships?:
|
|
8940
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8941
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8942
8942
|
links?: ObjectLinks;
|
|
8943
8943
|
}
|
|
8944
8944
|
export declare const JsonApiWorkspaceOutWithLinksTypeEnum: {
|
|
@@ -8957,8 +8957,8 @@ export interface JsonApiWorkspacePatch {
|
|
|
8957
8957
|
* API identifier of an object
|
|
8958
8958
|
*/
|
|
8959
8959
|
id: string;
|
|
8960
|
-
attributes?:
|
|
8961
|
-
relationships?:
|
|
8960
|
+
attributes?: JsonApiWorkspaceInAttributes;
|
|
8961
|
+
relationships?: JsonApiWorkspaceInRelationships;
|
|
8962
8962
|
}
|
|
8963
8963
|
export declare const JsonApiWorkspacePatchTypeEnum: {
|
|
8964
8964
|
readonly WORKSPACE: "workspace";
|
|
@@ -8979,7 +8979,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
8979
8979
|
* API identifier of an object
|
|
8980
8980
|
*/
|
|
8981
8981
|
id: string;
|
|
8982
|
-
attributes?:
|
|
8982
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
8983
8983
|
}
|
|
8984
8984
|
export declare const JsonApiWorkspaceSettingInTypeEnum: {
|
|
8985
8985
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9001,7 +9001,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
9001
9001
|
*/
|
|
9002
9002
|
id: string;
|
|
9003
9003
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
9004
|
-
attributes?:
|
|
9004
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9005
9005
|
}
|
|
9006
9006
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
9007
9007
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9017,7 +9017,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
|
|
|
9017
9017
|
export interface JsonApiWorkspaceSettingOutList {
|
|
9018
9018
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
9019
9019
|
links?: ListLinks;
|
|
9020
|
-
meta?:
|
|
9020
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
9021
9021
|
}
|
|
9022
9022
|
export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
9023
9023
|
/**
|
|
@@ -9029,7 +9029,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
9029
9029
|
*/
|
|
9030
9030
|
id: string;
|
|
9031
9031
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
9032
|
-
attributes?:
|
|
9032
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9033
9033
|
links?: ObjectLinks;
|
|
9034
9034
|
}
|
|
9035
9035
|
export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
|
|
@@ -9048,7 +9048,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
9048
9048
|
* API identifier of an object
|
|
9049
9049
|
*/
|
|
9050
9050
|
id: string;
|
|
9051
|
-
attributes?:
|
|
9051
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9052
9052
|
}
|
|
9053
9053
|
export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
|
|
9054
9054
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|
|
@@ -9069,7 +9069,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
9069
9069
|
* API identifier of an object
|
|
9070
9070
|
*/
|
|
9071
9071
|
id?: string;
|
|
9072
|
-
attributes?:
|
|
9072
|
+
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
9073
9073
|
}
|
|
9074
9074
|
export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
|
|
9075
9075
|
readonly WORKSPACE_SETTING: "workspaceSetting";
|