@gooddata/api-client-tiger 11.32.0-alpha.0 → 11.32.0-alpha.1
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 +697 -136
- package/esm/gd-tiger-model/TigerTypes.d.ts +8 -0
- package/esm/gd-tiger-model/TigerTypes.d.ts.map +1 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.d.ts +5 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +500 -0
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +563 -0
- package/esm/generated/ai-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +142 -122
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- 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
|
@@ -1436,10 +1436,15 @@ export interface DeclarativeDataSource {
|
|
|
1436
1436
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
1437
1437
|
*/
|
|
1438
1438
|
'alternativeDataSourceId'?: string | null;
|
|
1439
|
+
/**
|
|
1440
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this. - LOCAL: The values are assumed to be in local timezone and they are not converted to the user\'s timezone. - UTC: The values are assumed to be in UTC and they are converted to the user\'s timezone.
|
|
1441
|
+
*/
|
|
1442
|
+
'dateTimeSemantics'?: DeclarativeDataSourceDateTimeSemanticsEnum | null;
|
|
1439
1443
|
}
|
|
1440
1444
|
export type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
1441
1445
|
export type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
1442
1446
|
export type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
|
|
1447
|
+
export type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
1443
1448
|
export interface DeclarativeDataSourcePermission {
|
|
1444
1449
|
/**
|
|
1445
1450
|
* Permission name.
|
|
@@ -4229,16 +4234,9 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4229
4234
|
* API identifier of an object
|
|
4230
4235
|
*/
|
|
4231
4236
|
'id': string;
|
|
4232
|
-
'attributes'?:
|
|
4237
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4233
4238
|
}
|
|
4234
4239
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
|
|
4235
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4236
|
-
'lastRotation'?: string;
|
|
4237
|
-
/**
|
|
4238
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4239
|
-
*/
|
|
4240
|
-
'rotationInterval'?: string;
|
|
4241
|
-
}
|
|
4242
4240
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4243
4241
|
'data': JsonApiCookieSecurityConfigurationIn;
|
|
4244
4242
|
}
|
|
@@ -4254,7 +4252,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4254
4252
|
* API identifier of an object
|
|
4255
4253
|
*/
|
|
4256
4254
|
'id': string;
|
|
4257
|
-
'attributes'?:
|
|
4255
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4258
4256
|
}
|
|
4259
4257
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
|
|
4260
4258
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -4273,9 +4271,16 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4273
4271
|
* API identifier of an object
|
|
4274
4272
|
*/
|
|
4275
4273
|
'id': string;
|
|
4276
|
-
'attributes'?:
|
|
4274
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4277
4275
|
}
|
|
4278
4276
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
|
|
4277
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4278
|
+
'lastRotation'?: string;
|
|
4279
|
+
/**
|
|
4280
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4281
|
+
*/
|
|
4282
|
+
'rotationInterval'?: string;
|
|
4283
|
+
}
|
|
4279
4284
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4280
4285
|
'data': JsonApiCookieSecurityConfigurationPatch;
|
|
4281
4286
|
}
|
|
@@ -4373,7 +4378,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4373
4378
|
* API identifier of an object
|
|
4374
4379
|
*/
|
|
4375
4380
|
'id': string;
|
|
4376
|
-
'attributes':
|
|
4381
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4377
4382
|
}
|
|
4378
4383
|
export type JsonApiCustomApplicationSettingInTypeEnum = 'customApplicationSetting';
|
|
4379
4384
|
export interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -4392,16 +4397,9 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4392
4397
|
*/
|
|
4393
4398
|
'id': string;
|
|
4394
4399
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
4395
|
-
'attributes':
|
|
4400
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4396
4401
|
}
|
|
4397
4402
|
export type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
|
|
4398
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
4399
|
-
'applicationName': string;
|
|
4400
|
-
/**
|
|
4401
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4402
|
-
*/
|
|
4403
|
-
'content': object;
|
|
4404
|
-
}
|
|
4405
4403
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4406
4404
|
'data': JsonApiCustomApplicationSettingOut;
|
|
4407
4405
|
'links'?: ObjectLinks;
|
|
@@ -4424,7 +4422,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4424
4422
|
*/
|
|
4425
4423
|
'id': string;
|
|
4426
4424
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
4427
|
-
'attributes':
|
|
4425
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4428
4426
|
'links'?: ObjectLinks;
|
|
4429
4427
|
}
|
|
4430
4428
|
export type JsonApiCustomApplicationSettingOutWithLinksTypeEnum = 'customApplicationSetting';
|
|
@@ -4465,9 +4463,16 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4465
4463
|
* API identifier of an object
|
|
4466
4464
|
*/
|
|
4467
4465
|
'id'?: string;
|
|
4468
|
-
'attributes':
|
|
4466
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4469
4467
|
}
|
|
4470
4468
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = 'customApplicationSetting';
|
|
4469
|
+
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
4470
|
+
'applicationName': string;
|
|
4471
|
+
/**
|
|
4472
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4473
|
+
*/
|
|
4474
|
+
'content': object;
|
|
4475
|
+
}
|
|
4471
4476
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4472
4477
|
'data': JsonApiCustomApplicationSettingPostOptionalId;
|
|
4473
4478
|
}
|
|
@@ -4483,9 +4488,13 @@ export interface JsonApiCustomGeoCollectionIn {
|
|
|
4483
4488
|
* API identifier of an object
|
|
4484
4489
|
*/
|
|
4485
4490
|
'id': string;
|
|
4486
|
-
'attributes'?:
|
|
4491
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4487
4492
|
}
|
|
4488
4493
|
export type JsonApiCustomGeoCollectionInTypeEnum = 'customGeoCollection';
|
|
4494
|
+
export interface JsonApiCustomGeoCollectionInAttributes {
|
|
4495
|
+
'name'?: string | null;
|
|
4496
|
+
'description'?: string | null;
|
|
4497
|
+
}
|
|
4489
4498
|
export interface JsonApiCustomGeoCollectionInDocument {
|
|
4490
4499
|
'data': JsonApiCustomGeoCollectionIn;
|
|
4491
4500
|
}
|
|
@@ -4501,13 +4510,9 @@ export interface JsonApiCustomGeoCollectionOut {
|
|
|
4501
4510
|
* API identifier of an object
|
|
4502
4511
|
*/
|
|
4503
4512
|
'id': string;
|
|
4504
|
-
'attributes'?:
|
|
4513
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4505
4514
|
}
|
|
4506
4515
|
export type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
|
|
4507
|
-
export interface JsonApiCustomGeoCollectionOutAttributes {
|
|
4508
|
-
'name'?: string | null;
|
|
4509
|
-
'description'?: string | null;
|
|
4510
|
-
}
|
|
4511
4516
|
export interface JsonApiCustomGeoCollectionOutDocument {
|
|
4512
4517
|
'data': JsonApiCustomGeoCollectionOut;
|
|
4513
4518
|
'links'?: ObjectLinks;
|
|
@@ -4529,7 +4534,7 @@ export interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
4529
4534
|
* API identifier of an object
|
|
4530
4535
|
*/
|
|
4531
4536
|
'id': string;
|
|
4532
|
-
'attributes'?:
|
|
4537
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4533
4538
|
'links'?: ObjectLinks;
|
|
4534
4539
|
}
|
|
4535
4540
|
export type JsonApiCustomGeoCollectionOutWithLinksTypeEnum = 'customGeoCollection';
|
|
@@ -4545,7 +4550,7 @@ export interface JsonApiCustomGeoCollectionPatch {
|
|
|
4545
4550
|
* API identifier of an object
|
|
4546
4551
|
*/
|
|
4547
4552
|
'id': string;
|
|
4548
|
-
'attributes'?:
|
|
4553
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4549
4554
|
}
|
|
4550
4555
|
export type JsonApiCustomGeoCollectionPatchTypeEnum = 'customGeoCollection';
|
|
4551
4556
|
export interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -4824,9 +4829,14 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
4824
4829
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
4825
4830
|
*/
|
|
4826
4831
|
'alternativeDataSourceId'?: string | null;
|
|
4832
|
+
/**
|
|
4833
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
4834
|
+
*/
|
|
4835
|
+
'dateTimeSemantics'?: JsonApiDataSourceInAttributesDateTimeSemanticsEnum | null;
|
|
4827
4836
|
}
|
|
4828
4837
|
export type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
4829
4838
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
4839
|
+
export type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
4830
4840
|
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
4831
4841
|
'name': string;
|
|
4832
4842
|
'value': string;
|
|
@@ -4895,10 +4905,15 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
4895
4905
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
4896
4906
|
*/
|
|
4897
4907
|
'alternativeDataSourceId'?: string | null;
|
|
4908
|
+
/**
|
|
4909
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
4910
|
+
*/
|
|
4911
|
+
'dateTimeSemantics'?: JsonApiDataSourceOutAttributesDateTimeSemanticsEnum | null;
|
|
4898
4912
|
}
|
|
4899
4913
|
export type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
4900
4914
|
export type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
4901
4915
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
|
|
4916
|
+
export type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
4902
4917
|
export interface JsonApiDataSourceOutDocument {
|
|
4903
4918
|
'data': JsonApiDataSourceOut;
|
|
4904
4919
|
'links'?: ObjectLinks;
|
|
@@ -4997,9 +5012,14 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
4997
5012
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
4998
5013
|
*/
|
|
4999
5014
|
'alternativeDataSourceId'?: string | null;
|
|
5015
|
+
/**
|
|
5016
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
5017
|
+
*/
|
|
5018
|
+
'dateTimeSemantics'?: JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum | null;
|
|
5000
5019
|
}
|
|
5001
5020
|
export type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
5002
5021
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
5022
|
+
export type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
5003
5023
|
export interface JsonApiDataSourcePatchDocument {
|
|
5004
5024
|
'data': JsonApiDataSourcePatch;
|
|
5005
5025
|
}
|
|
@@ -5390,7 +5410,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5390
5410
|
* API identifier of an object
|
|
5391
5411
|
*/
|
|
5392
5412
|
'id': string;
|
|
5393
|
-
'attributes':
|
|
5413
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5394
5414
|
}
|
|
5395
5415
|
export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
|
|
5396
5416
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -5408,42 +5428,9 @@ export interface JsonApiExportTemplateOut {
|
|
|
5408
5428
|
* API identifier of an object
|
|
5409
5429
|
*/
|
|
5410
5430
|
'id': string;
|
|
5411
|
-
'attributes':
|
|
5431
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5412
5432
|
}
|
|
5413
5433
|
export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
5414
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5415
|
-
/**
|
|
5416
|
-
* User-facing name of the Slides template.
|
|
5417
|
-
*/
|
|
5418
|
-
'name': string;
|
|
5419
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5420
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5421
|
-
}
|
|
5422
|
-
/**
|
|
5423
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5424
|
-
*/
|
|
5425
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5426
|
-
/**
|
|
5427
|
-
* Export types this template applies to.
|
|
5428
|
-
*/
|
|
5429
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5430
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
5431
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
5432
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5433
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5434
|
-
}
|
|
5435
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5436
|
-
/**
|
|
5437
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5438
|
-
*/
|
|
5439
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5440
|
-
/**
|
|
5441
|
-
* Export types this template applies to.
|
|
5442
|
-
*/
|
|
5443
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5444
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5445
|
-
}
|
|
5446
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5447
5434
|
export interface JsonApiExportTemplateOutDocument {
|
|
5448
5435
|
'data': JsonApiExportTemplateOut;
|
|
5449
5436
|
'links'?: ObjectLinks;
|
|
@@ -5465,7 +5452,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5465
5452
|
* API identifier of an object
|
|
5466
5453
|
*/
|
|
5467
5454
|
'id': string;
|
|
5468
|
-
'attributes':
|
|
5455
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5469
5456
|
'links'?: ObjectLinks;
|
|
5470
5457
|
}
|
|
5471
5458
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
|
|
@@ -5489,8 +5476,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5489
5476
|
* User-facing name of the Slides template.
|
|
5490
5477
|
*/
|
|
5491
5478
|
'name'?: string;
|
|
5492
|
-
'dashboardSlidesTemplate'?:
|
|
5493
|
-
'widgetSlidesTemplate'?:
|
|
5479
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5480
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5494
5481
|
}
|
|
5495
5482
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5496
5483
|
'data': JsonApiExportTemplatePatch;
|
|
@@ -5507,9 +5494,42 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5507
5494
|
* API identifier of an object
|
|
5508
5495
|
*/
|
|
5509
5496
|
'id'?: string;
|
|
5510
|
-
'attributes':
|
|
5497
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5511
5498
|
}
|
|
5512
5499
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
|
|
5500
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5501
|
+
/**
|
|
5502
|
+
* User-facing name of the Slides template.
|
|
5503
|
+
*/
|
|
5504
|
+
'name': string;
|
|
5505
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5506
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5507
|
+
}
|
|
5508
|
+
/**
|
|
5509
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5510
|
+
*/
|
|
5511
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5512
|
+
/**
|
|
5513
|
+
* Export types this template applies to.
|
|
5514
|
+
*/
|
|
5515
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5516
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
5517
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
5518
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5519
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5520
|
+
}
|
|
5521
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5522
|
+
/**
|
|
5523
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5524
|
+
*/
|
|
5525
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5526
|
+
/**
|
|
5527
|
+
* Export types this template applies to.
|
|
5528
|
+
*/
|
|
5529
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5530
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5531
|
+
}
|
|
5532
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5513
5533
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5514
5534
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
5515
5535
|
}
|
|
@@ -6739,28 +6759,10 @@ export interface JsonApiLlmProviderIn {
|
|
|
6739
6759
|
* API identifier of an object
|
|
6740
6760
|
*/
|
|
6741
6761
|
'id': string;
|
|
6742
|
-
'attributes'?:
|
|
6762
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6743
6763
|
}
|
|
6744
6764
|
export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
6745
|
-
export interface
|
|
6746
|
-
'data': JsonApiLlmProviderIn;
|
|
6747
|
-
}
|
|
6748
|
-
/**
|
|
6749
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
6750
|
-
*/
|
|
6751
|
-
export interface JsonApiLlmProviderOut {
|
|
6752
|
-
/**
|
|
6753
|
-
* Object type
|
|
6754
|
-
*/
|
|
6755
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6756
|
-
/**
|
|
6757
|
-
* API identifier of an object
|
|
6758
|
-
*/
|
|
6759
|
-
'id': string;
|
|
6760
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
6761
|
-
}
|
|
6762
|
-
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6763
|
-
export interface JsonApiLlmProviderOutAttributes {
|
|
6765
|
+
export interface JsonApiLlmProviderInAttributes {
|
|
6764
6766
|
'name'?: string | null;
|
|
6765
6767
|
/**
|
|
6766
6768
|
* Description of the LLM Provider.
|
|
@@ -6770,16 +6772,16 @@ export interface JsonApiLlmProviderOutAttributes {
|
|
|
6770
6772
|
* Required ID of the default model to use from the models list.
|
|
6771
6773
|
*/
|
|
6772
6774
|
'defaultModelId'?: string | null;
|
|
6773
|
-
'providerConfig'?:
|
|
6775
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
6774
6776
|
/**
|
|
6775
6777
|
* List of LLM models available for this provider.
|
|
6776
6778
|
*/
|
|
6777
|
-
'models'?: Array<
|
|
6779
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
6778
6780
|
}
|
|
6779
6781
|
/**
|
|
6780
6782
|
* LLM Model configuration (id, family) within a provider.
|
|
6781
6783
|
*/
|
|
6782
|
-
export interface
|
|
6784
|
+
export interface JsonApiLlmProviderInAttributesModelsInner {
|
|
6783
6785
|
/**
|
|
6784
6786
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
6785
6787
|
*/
|
|
@@ -6787,14 +6789,32 @@ export interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
6787
6789
|
/**
|
|
6788
6790
|
* Family of LLM models.
|
|
6789
6791
|
*/
|
|
6790
|
-
'family':
|
|
6792
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
6791
6793
|
}
|
|
6792
|
-
export type
|
|
6794
|
+
export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
6793
6795
|
/**
|
|
6794
|
-
* @type
|
|
6796
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
6795
6797
|
* Provider-specific configuration including authentication.
|
|
6796
6798
|
*/
|
|
6797
|
-
export type
|
|
6799
|
+
export type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
6800
|
+
export interface JsonApiLlmProviderInDocument {
|
|
6801
|
+
'data': JsonApiLlmProviderIn;
|
|
6802
|
+
}
|
|
6803
|
+
/**
|
|
6804
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
6805
|
+
*/
|
|
6806
|
+
export interface JsonApiLlmProviderOut {
|
|
6807
|
+
/**
|
|
6808
|
+
* Object type
|
|
6809
|
+
*/
|
|
6810
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6811
|
+
/**
|
|
6812
|
+
* API identifier of an object
|
|
6813
|
+
*/
|
|
6814
|
+
'id': string;
|
|
6815
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6816
|
+
}
|
|
6817
|
+
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6798
6818
|
export interface JsonApiLlmProviderOutDocument {
|
|
6799
6819
|
'data': JsonApiLlmProviderOut;
|
|
6800
6820
|
'links'?: ObjectLinks;
|
|
@@ -6816,7 +6836,7 @@ export interface JsonApiLlmProviderOutWithLinks {
|
|
|
6816
6836
|
* API identifier of an object
|
|
6817
6837
|
*/
|
|
6818
6838
|
'id': string;
|
|
6819
|
-
'attributes'?:
|
|
6839
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6820
6840
|
'links'?: ObjectLinks;
|
|
6821
6841
|
}
|
|
6822
6842
|
export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
|
|
@@ -6832,7 +6852,7 @@ export interface JsonApiLlmProviderPatch {
|
|
|
6832
6852
|
* API identifier of an object
|
|
6833
6853
|
*/
|
|
6834
6854
|
'id': string;
|
|
6835
|
-
'attributes'?:
|
|
6855
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6836
6856
|
}
|
|
6837
6857
|
export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
|
|
6838
6858
|
export interface JsonApiLlmProviderPatchDocument {
|
|
@@ -7518,7 +7538,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_
|
|
|
7518
7538
|
export interface JsonApiOrganizationOutRelationships {
|
|
7519
7539
|
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7520
7540
|
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7521
|
-
'identityProvider'?:
|
|
7541
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7522
7542
|
}
|
|
7523
7543
|
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7524
7544
|
'data': JsonApiUserLinkage | null;
|
|
@@ -7526,9 +7546,6 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
|
7526
7546
|
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7527
7547
|
'data': JsonApiUserGroupLinkage | null;
|
|
7528
7548
|
}
|
|
7529
|
-
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
7530
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
7531
|
-
}
|
|
7532
7549
|
/**
|
|
7533
7550
|
* JSON:API representation of patching organization entity.
|
|
7534
7551
|
*/
|
|
@@ -7563,7 +7580,10 @@ export interface JsonApiOrganizationPatchDocument {
|
|
|
7563
7580
|
'data': JsonApiOrganizationPatch;
|
|
7564
7581
|
}
|
|
7565
7582
|
export interface JsonApiOrganizationPatchRelationships {
|
|
7566
|
-
'identityProvider'?:
|
|
7583
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7584
|
+
}
|
|
7585
|
+
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
7586
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
7567
7587
|
}
|
|
7568
7588
|
/**
|
|
7569
7589
|
* JSON:API representation of organizationSetting entity.
|
|
@@ -7577,17 +7597,9 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7577
7597
|
* API identifier of an object
|
|
7578
7598
|
*/
|
|
7579
7599
|
'id': string;
|
|
7580
|
-
'attributes'?:
|
|
7600
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
7581
7601
|
}
|
|
7582
7602
|
export type JsonApiOrganizationSettingInTypeEnum = 'organizationSetting';
|
|
7583
|
-
export interface JsonApiOrganizationSettingInAttributes {
|
|
7584
|
-
/**
|
|
7585
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7586
|
-
*/
|
|
7587
|
-
'content'?: object;
|
|
7588
|
-
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7589
|
-
}
|
|
7590
|
-
export type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
|
|
7591
7603
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7592
7604
|
'data': JsonApiOrganizationSettingIn;
|
|
7593
7605
|
}
|
|
@@ -7603,9 +7615,17 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7603
7615
|
* API identifier of an object
|
|
7604
7616
|
*/
|
|
7605
7617
|
'id': string;
|
|
7606
|
-
'attributes'?:
|
|
7618
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
7607
7619
|
}
|
|
7608
7620
|
export type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
|
|
7621
|
+
export interface JsonApiOrganizationSettingOutAttributes {
|
|
7622
|
+
/**
|
|
7623
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7624
|
+
*/
|
|
7625
|
+
'content'?: object;
|
|
7626
|
+
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
7627
|
+
}
|
|
7628
|
+
export type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
|
|
7609
7629
|
export interface JsonApiOrganizationSettingOutDocument {
|
|
7610
7630
|
'data': JsonApiOrganizationSettingOut;
|
|
7611
7631
|
'links'?: ObjectLinks;
|
|
@@ -7627,7 +7647,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7627
7647
|
* API identifier of an object
|
|
7628
7648
|
*/
|
|
7629
7649
|
'id': string;
|
|
7630
|
-
'attributes'?:
|
|
7650
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
7631
7651
|
'links'?: ObjectLinks;
|
|
7632
7652
|
}
|
|
7633
7653
|
export type JsonApiOrganizationSettingOutWithLinksTypeEnum = 'organizationSetting';
|
|
@@ -7643,7 +7663,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7643
7663
|
* API identifier of an object
|
|
7644
7664
|
*/
|
|
7645
7665
|
'id': string;
|
|
7646
|
-
'attributes'?:
|
|
7666
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
7647
7667
|
}
|
|
7648
7668
|
export type JsonApiOrganizationSettingPatchTypeEnum = 'organizationSetting';
|
|
7649
7669
|
export interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -8287,7 +8307,7 @@ export interface JsonApiUserSettingIn {
|
|
|
8287
8307
|
* API identifier of an object
|
|
8288
8308
|
*/
|
|
8289
8309
|
'id': string;
|
|
8290
|
-
'attributes'?:
|
|
8310
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
8291
8311
|
}
|
|
8292
8312
|
export type JsonApiUserSettingInTypeEnum = 'userSetting';
|
|
8293
8313
|
export interface JsonApiUserSettingInDocument {
|
|
@@ -8305,7 +8325,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8305
8325
|
* API identifier of an object
|
|
8306
8326
|
*/
|
|
8307
8327
|
'id': string;
|
|
8308
|
-
'attributes'?:
|
|
8328
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
8309
8329
|
}
|
|
8310
8330
|
export type JsonApiUserSettingOutTypeEnum = 'userSetting';
|
|
8311
8331
|
export interface JsonApiUserSettingOutDocument {
|
|
@@ -8329,7 +8349,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8329
8349
|
* API identifier of an object
|
|
8330
8350
|
*/
|
|
8331
8351
|
'id': string;
|
|
8332
|
-
'attributes'?:
|
|
8352
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
8333
8353
|
'links'?: ObjectLinks;
|
|
8334
8354
|
}
|
|
8335
8355
|
export type JsonApiUserSettingOutWithLinksTypeEnum = 'userSetting';
|
|
@@ -9096,7 +9116,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
9096
9116
|
* API identifier of an object
|
|
9097
9117
|
*/
|
|
9098
9118
|
'id': string;
|
|
9099
|
-
'attributes'?:
|
|
9119
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
9100
9120
|
}
|
|
9101
9121
|
export type JsonApiWorkspaceSettingInTypeEnum = 'workspaceSetting';
|
|
9102
9122
|
export interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -9115,7 +9135,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
9115
9135
|
*/
|
|
9116
9136
|
'id': string;
|
|
9117
9137
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9118
|
-
'attributes'?:
|
|
9138
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
9119
9139
|
}
|
|
9120
9140
|
export type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
|
|
9121
9141
|
export interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -9140,7 +9160,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
9140
9160
|
*/
|
|
9141
9161
|
'id': string;
|
|
9142
9162
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9143
|
-
'attributes'?:
|
|
9163
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
9144
9164
|
'links'?: ObjectLinks;
|
|
9145
9165
|
}
|
|
9146
9166
|
export type JsonApiWorkspaceSettingOutWithLinksTypeEnum = 'workspaceSetting';
|
|
@@ -9156,7 +9176,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
9156
9176
|
* API identifier of an object
|
|
9157
9177
|
*/
|
|
9158
9178
|
'id': string;
|
|
9159
|
-
'attributes'?:
|
|
9179
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
9160
9180
|
}
|
|
9161
9181
|
export type JsonApiWorkspaceSettingPatchTypeEnum = 'workspaceSetting';
|
|
9162
9182
|
export interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -9174,7 +9194,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
9174
9194
|
* API identifier of an object
|
|
9175
9195
|
*/
|
|
9176
9196
|
'id'?: string;
|
|
9177
|
-
'attributes'?:
|
|
9197
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
9178
9198
|
}
|
|
9179
9199
|
export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = 'workspaceSetting';
|
|
9180
9200
|
export interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|