@gooddata/api-client-tiger 11.26.0-alpha.3 → 11.26.0-alpha.5
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 +224 -171
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/actions/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +127 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +122 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +153 -153
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -3849,9 +3849,16 @@ export interface JsonApiColorPaletteIn {
|
|
|
3849
3849
|
* API identifier of an object
|
|
3850
3850
|
*/
|
|
3851
3851
|
'id': string;
|
|
3852
|
-
'attributes':
|
|
3852
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3853
3853
|
}
|
|
3854
3854
|
export type JsonApiColorPaletteInTypeEnum = 'colorPalette';
|
|
3855
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
3856
|
+
'name': string;
|
|
3857
|
+
/**
|
|
3858
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3859
|
+
*/
|
|
3860
|
+
'content': object;
|
|
3861
|
+
}
|
|
3855
3862
|
export interface JsonApiColorPaletteInDocument {
|
|
3856
3863
|
'data': JsonApiColorPaletteIn;
|
|
3857
3864
|
}
|
|
@@ -3867,16 +3874,9 @@ export interface JsonApiColorPaletteOut {
|
|
|
3867
3874
|
* API identifier of an object
|
|
3868
3875
|
*/
|
|
3869
3876
|
'id': string;
|
|
3870
|
-
'attributes':
|
|
3877
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3871
3878
|
}
|
|
3872
3879
|
export type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
|
|
3873
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
3874
|
-
'name': string;
|
|
3875
|
-
/**
|
|
3876
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3877
|
-
*/
|
|
3878
|
-
'content': object;
|
|
3879
|
-
}
|
|
3880
3880
|
export interface JsonApiColorPaletteOutDocument {
|
|
3881
3881
|
'data': JsonApiColorPaletteOut;
|
|
3882
3882
|
'links'?: ObjectLinks;
|
|
@@ -3898,7 +3898,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
3898
3898
|
* API identifier of an object
|
|
3899
3899
|
*/
|
|
3900
3900
|
'id': string;
|
|
3901
|
-
'attributes':
|
|
3901
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3902
3902
|
'links'?: ObjectLinks;
|
|
3903
3903
|
}
|
|
3904
3904
|
export type JsonApiColorPaletteOutWithLinksTypeEnum = 'colorPalette';
|
|
@@ -3939,7 +3939,7 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
3939
3939
|
* API identifier of an object
|
|
3940
3940
|
*/
|
|
3941
3941
|
'id': string;
|
|
3942
|
-
'attributes'?:
|
|
3942
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
3943
3943
|
}
|
|
3944
3944
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
|
|
3945
3945
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -3957,16 +3957,9 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
3957
3957
|
* API identifier of an object
|
|
3958
3958
|
*/
|
|
3959
3959
|
'id': string;
|
|
3960
|
-
'attributes'?:
|
|
3960
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
3961
3961
|
}
|
|
3962
3962
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
|
|
3963
|
-
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
3964
|
-
'lastRotation'?: string;
|
|
3965
|
-
/**
|
|
3966
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
3967
|
-
*/
|
|
3968
|
-
'rotationInterval'?: string;
|
|
3969
|
-
}
|
|
3970
3963
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
3971
3964
|
'data': JsonApiCookieSecurityConfigurationOut;
|
|
3972
3965
|
'links'?: ObjectLinks;
|
|
@@ -3983,9 +3976,16 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
3983
3976
|
* API identifier of an object
|
|
3984
3977
|
*/
|
|
3985
3978
|
'id': string;
|
|
3986
|
-
'attributes'?:
|
|
3979
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
3987
3980
|
}
|
|
3988
3981
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
|
|
3982
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
3983
|
+
'lastRotation'?: string;
|
|
3984
|
+
/**
|
|
3985
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
3986
|
+
*/
|
|
3987
|
+
'rotationInterval'?: string;
|
|
3988
|
+
}
|
|
3989
3989
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
3990
3990
|
'data': JsonApiCookieSecurityConfigurationPatch;
|
|
3991
3991
|
}
|
|
@@ -4001,9 +4001,12 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4001
4001
|
* API identifier of an object
|
|
4002
4002
|
*/
|
|
4003
4003
|
'id': string;
|
|
4004
|
-
'attributes':
|
|
4004
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4005
4005
|
}
|
|
4006
4006
|
export type JsonApiCspDirectiveInTypeEnum = 'cspDirective';
|
|
4007
|
+
export interface JsonApiCspDirectiveInAttributes {
|
|
4008
|
+
'sources': Array<string>;
|
|
4009
|
+
}
|
|
4007
4010
|
export interface JsonApiCspDirectiveInDocument {
|
|
4008
4011
|
'data': JsonApiCspDirectiveIn;
|
|
4009
4012
|
}
|
|
@@ -4019,12 +4022,9 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4019
4022
|
* API identifier of an object
|
|
4020
4023
|
*/
|
|
4021
4024
|
'id': string;
|
|
4022
|
-
'attributes':
|
|
4025
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4023
4026
|
}
|
|
4024
4027
|
export type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
|
|
4025
|
-
export interface JsonApiCspDirectiveOutAttributes {
|
|
4026
|
-
'sources': Array<string>;
|
|
4027
|
-
}
|
|
4028
4028
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4029
4029
|
'data': JsonApiCspDirectiveOut;
|
|
4030
4030
|
'links'?: ObjectLinks;
|
|
@@ -4046,7 +4046,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4046
4046
|
* API identifier of an object
|
|
4047
4047
|
*/
|
|
4048
4048
|
'id': string;
|
|
4049
|
-
'attributes':
|
|
4049
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4050
4050
|
'links'?: ObjectLinks;
|
|
4051
4051
|
}
|
|
4052
4052
|
export type JsonApiCspDirectiveOutWithLinksTypeEnum = 'cspDirective';
|
|
@@ -5103,7 +5103,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5103
5103
|
* API identifier of an object
|
|
5104
5104
|
*/
|
|
5105
5105
|
'id': string;
|
|
5106
|
-
'attributes':
|
|
5106
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5107
5107
|
}
|
|
5108
5108
|
export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
|
|
5109
5109
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -5121,42 +5121,9 @@ export interface JsonApiExportTemplateOut {
|
|
|
5121
5121
|
* API identifier of an object
|
|
5122
5122
|
*/
|
|
5123
5123
|
'id': string;
|
|
5124
|
-
'attributes':
|
|
5124
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5125
5125
|
}
|
|
5126
5126
|
export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
5127
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5128
|
-
/**
|
|
5129
|
-
* User-facing name of the Slides template.
|
|
5130
|
-
*/
|
|
5131
|
-
'name': string;
|
|
5132
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5133
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5134
|
-
}
|
|
5135
|
-
/**
|
|
5136
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5137
|
-
*/
|
|
5138
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5139
|
-
/**
|
|
5140
|
-
* Export types this template applies to.
|
|
5141
|
-
*/
|
|
5142
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5143
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
5144
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
5145
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5146
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5147
|
-
}
|
|
5148
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5149
|
-
/**
|
|
5150
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5151
|
-
*/
|
|
5152
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5153
|
-
/**
|
|
5154
|
-
* Export types this template applies to.
|
|
5155
|
-
*/
|
|
5156
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5157
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5158
|
-
}
|
|
5159
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5160
5127
|
export interface JsonApiExportTemplateOutDocument {
|
|
5161
5128
|
'data': JsonApiExportTemplateOut;
|
|
5162
5129
|
'links'?: ObjectLinks;
|
|
@@ -5178,7 +5145,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5178
5145
|
* API identifier of an object
|
|
5179
5146
|
*/
|
|
5180
5147
|
'id': string;
|
|
5181
|
-
'attributes':
|
|
5148
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5182
5149
|
'links'?: ObjectLinks;
|
|
5183
5150
|
}
|
|
5184
5151
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
|
|
@@ -5202,8 +5169,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5202
5169
|
* User-facing name of the Slides template.
|
|
5203
5170
|
*/
|
|
5204
5171
|
'name'?: string;
|
|
5205
|
-
'dashboardSlidesTemplate'?:
|
|
5206
|
-
'widgetSlidesTemplate'?:
|
|
5172
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5173
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5207
5174
|
}
|
|
5208
5175
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5209
5176
|
'data': JsonApiExportTemplatePatch;
|
|
@@ -5220,9 +5187,42 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5220
5187
|
* API identifier of an object
|
|
5221
5188
|
*/
|
|
5222
5189
|
'id'?: string;
|
|
5223
|
-
'attributes':
|
|
5190
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5224
5191
|
}
|
|
5225
5192
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
|
|
5193
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5194
|
+
/**
|
|
5195
|
+
* User-facing name of the Slides template.
|
|
5196
|
+
*/
|
|
5197
|
+
'name': string;
|
|
5198
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5199
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5200
|
+
}
|
|
5201
|
+
/**
|
|
5202
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5203
|
+
*/
|
|
5204
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5205
|
+
/**
|
|
5206
|
+
* Export types this template applies to.
|
|
5207
|
+
*/
|
|
5208
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5209
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
5210
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
5211
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5212
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5213
|
+
}
|
|
5214
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5215
|
+
/**
|
|
5216
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5217
|
+
*/
|
|
5218
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5219
|
+
/**
|
|
5220
|
+
* Export types this template applies to.
|
|
5221
|
+
*/
|
|
5222
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5223
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5224
|
+
}
|
|
5225
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5226
5226
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5227
5227
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
5228
5228
|
}
|
|
@@ -5474,31 +5474,13 @@ export interface JsonApiFilterViewIn {
|
|
|
5474
5474
|
* API identifier of an object
|
|
5475
5475
|
*/
|
|
5476
5476
|
'id': string;
|
|
5477
|
-
'attributes':
|
|
5478
|
-
'relationships'?:
|
|
5477
|
+
'attributes': JsonApiFilterViewOutAttributes;
|
|
5478
|
+
'relationships'?: JsonApiFilterViewOutRelationships;
|
|
5479
5479
|
}
|
|
5480
5480
|
export type JsonApiFilterViewInTypeEnum = 'filterView';
|
|
5481
|
-
export interface JsonApiFilterViewInAttributes {
|
|
5482
|
-
'title': string;
|
|
5483
|
-
'description'?: string;
|
|
5484
|
-
'tags'?: Array<string>;
|
|
5485
|
-
'areRelationsValid'?: boolean;
|
|
5486
|
-
/**
|
|
5487
|
-
* Indicator whether the filter view should by applied by default.
|
|
5488
|
-
*/
|
|
5489
|
-
'isDefault'?: boolean;
|
|
5490
|
-
/**
|
|
5491
|
-
* The respective filter context.
|
|
5492
|
-
*/
|
|
5493
|
-
'content': object;
|
|
5494
|
-
}
|
|
5495
5481
|
export interface JsonApiFilterViewInDocument {
|
|
5496
5482
|
'data': JsonApiFilterViewIn;
|
|
5497
5483
|
}
|
|
5498
|
-
export interface JsonApiFilterViewInRelationships {
|
|
5499
|
-
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5500
|
-
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5501
|
-
}
|
|
5502
5484
|
/**
|
|
5503
5485
|
* JSON:API representation of filterView entity.
|
|
5504
5486
|
*/
|
|
@@ -5511,10 +5493,24 @@ export interface JsonApiFilterViewOut {
|
|
|
5511
5493
|
* API identifier of an object
|
|
5512
5494
|
*/
|
|
5513
5495
|
'id': string;
|
|
5514
|
-
'attributes':
|
|
5515
|
-
'relationships'?:
|
|
5496
|
+
'attributes': JsonApiFilterViewOutAttributes;
|
|
5497
|
+
'relationships'?: JsonApiFilterViewOutRelationships;
|
|
5516
5498
|
}
|
|
5517
5499
|
export type JsonApiFilterViewOutTypeEnum = 'filterView';
|
|
5500
|
+
export interface JsonApiFilterViewOutAttributes {
|
|
5501
|
+
'title': string;
|
|
5502
|
+
'description'?: string;
|
|
5503
|
+
'tags'?: Array<string>;
|
|
5504
|
+
'areRelationsValid'?: boolean;
|
|
5505
|
+
/**
|
|
5506
|
+
* Indicator whether the filter view should by applied by default.
|
|
5507
|
+
*/
|
|
5508
|
+
'isDefault'?: boolean;
|
|
5509
|
+
/**
|
|
5510
|
+
* The respective filter context.
|
|
5511
|
+
*/
|
|
5512
|
+
'content': object;
|
|
5513
|
+
}
|
|
5518
5514
|
export interface JsonApiFilterViewOutDocument {
|
|
5519
5515
|
'data': JsonApiFilterViewOut;
|
|
5520
5516
|
'links'?: ObjectLinks;
|
|
@@ -5539,6 +5535,10 @@ export interface JsonApiFilterViewOutList {
|
|
|
5539
5535
|
*/
|
|
5540
5536
|
'included'?: Array<JsonApiFilterViewOutIncludes>;
|
|
5541
5537
|
}
|
|
5538
|
+
export interface JsonApiFilterViewOutRelationships {
|
|
5539
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5540
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5541
|
+
}
|
|
5542
5542
|
export interface JsonApiFilterViewOutWithLinks {
|
|
5543
5543
|
/**
|
|
5544
5544
|
* Object type
|
|
@@ -5548,8 +5548,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
5548
5548
|
* API identifier of an object
|
|
5549
5549
|
*/
|
|
5550
5550
|
'id': string;
|
|
5551
|
-
'attributes':
|
|
5552
|
-
'relationships'?:
|
|
5551
|
+
'attributes': JsonApiFilterViewOutAttributes;
|
|
5552
|
+
'relationships'?: JsonApiFilterViewOutRelationships;
|
|
5553
5553
|
'links'?: ObjectLinks;
|
|
5554
5554
|
}
|
|
5555
5555
|
export type JsonApiFilterViewOutWithLinksTypeEnum = 'filterView';
|
|
@@ -5566,7 +5566,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
5566
5566
|
*/
|
|
5567
5567
|
'id': string;
|
|
5568
5568
|
'attributes': JsonApiFilterViewPatchAttributes;
|
|
5569
|
-
'relationships'?:
|
|
5569
|
+
'relationships'?: JsonApiFilterViewOutRelationships;
|
|
5570
5570
|
}
|
|
5571
5571
|
export type JsonApiFilterViewPatchTypeEnum = 'filterView';
|
|
5572
5572
|
export interface JsonApiFilterViewPatchAttributes {
|
|
@@ -5776,12 +5776,9 @@ export interface JsonApiJwkIn {
|
|
|
5776
5776
|
* API identifier of an object
|
|
5777
5777
|
*/
|
|
5778
5778
|
'id': string;
|
|
5779
|
-
'attributes'?:
|
|
5779
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
5780
5780
|
}
|
|
5781
5781
|
export type JsonApiJwkInTypeEnum = 'jwk';
|
|
5782
|
-
export interface JsonApiJwkInAttributes {
|
|
5783
|
-
'content'?: RsaSpecification;
|
|
5784
|
-
}
|
|
5785
5782
|
export interface JsonApiJwkInDocument {
|
|
5786
5783
|
'data': JsonApiJwkIn;
|
|
5787
5784
|
}
|
|
@@ -5797,9 +5794,12 @@ export interface JsonApiJwkOut {
|
|
|
5797
5794
|
* API identifier of an object
|
|
5798
5795
|
*/
|
|
5799
5796
|
'id': string;
|
|
5800
|
-
'attributes'?:
|
|
5797
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
5801
5798
|
}
|
|
5802
5799
|
export type JsonApiJwkOutTypeEnum = 'jwk';
|
|
5800
|
+
export interface JsonApiJwkOutAttributes {
|
|
5801
|
+
'content'?: RsaSpecification;
|
|
5802
|
+
}
|
|
5803
5803
|
export interface JsonApiJwkOutDocument {
|
|
5804
5804
|
'data': JsonApiJwkOut;
|
|
5805
5805
|
'links'?: ObjectLinks;
|
|
@@ -5821,7 +5821,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
5821
5821
|
* API identifier of an object
|
|
5822
5822
|
*/
|
|
5823
5823
|
'id': string;
|
|
5824
|
-
'attributes'?:
|
|
5824
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
5825
5825
|
'links'?: ObjectLinks;
|
|
5826
5826
|
}
|
|
5827
5827
|
export type JsonApiJwkOutWithLinksTypeEnum = 'jwk';
|
|
@@ -5837,7 +5837,7 @@ export interface JsonApiJwkPatch {
|
|
|
5837
5837
|
* API identifier of an object
|
|
5838
5838
|
*/
|
|
5839
5839
|
'id': string;
|
|
5840
|
-
'attributes'?:
|
|
5840
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
5841
5841
|
}
|
|
5842
5842
|
export type JsonApiJwkPatchTypeEnum = 'jwk';
|
|
5843
5843
|
export interface JsonApiJwkPatchDocument {
|
|
@@ -5971,12 +5971,9 @@ export interface JsonApiKnowledgeRecommendationOutList {
|
|
|
5971
5971
|
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
5972
5972
|
}
|
|
5973
5973
|
export interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
5974
|
-
'metric'?:
|
|
5974
|
+
'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
5975
5975
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5976
5976
|
}
|
|
5977
|
-
export interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
5978
|
-
'data': JsonApiMetricLinkage | null;
|
|
5979
|
-
}
|
|
5980
5977
|
export interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
5981
5978
|
/**
|
|
5982
5979
|
* Object type
|
|
@@ -6163,9 +6160,12 @@ export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
|
6163
6160
|
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
6164
6161
|
}
|
|
6165
6162
|
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
6166
|
-
'metric':
|
|
6163
|
+
'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6167
6164
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6168
6165
|
}
|
|
6166
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
6167
|
+
'data': JsonApiMetricLinkage | null;
|
|
6168
|
+
}
|
|
6169
6169
|
/**
|
|
6170
6170
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6171
6171
|
*/
|
|
@@ -6455,28 +6455,10 @@ export interface JsonApiLlmProviderIn {
|
|
|
6455
6455
|
* API identifier of an object
|
|
6456
6456
|
*/
|
|
6457
6457
|
'id': string;
|
|
6458
|
-
'attributes'?:
|
|
6458
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6459
6459
|
}
|
|
6460
6460
|
export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
6461
|
-
export interface
|
|
6462
|
-
'data': JsonApiLlmProviderIn;
|
|
6463
|
-
}
|
|
6464
|
-
/**
|
|
6465
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
6466
|
-
*/
|
|
6467
|
-
export interface JsonApiLlmProviderOut {
|
|
6468
|
-
/**
|
|
6469
|
-
* Object type
|
|
6470
|
-
*/
|
|
6471
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6472
|
-
/**
|
|
6473
|
-
* API identifier of an object
|
|
6474
|
-
*/
|
|
6475
|
-
'id': string;
|
|
6476
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
6477
|
-
}
|
|
6478
|
-
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6479
|
-
export interface JsonApiLlmProviderOutAttributes {
|
|
6461
|
+
export interface JsonApiLlmProviderInAttributes {
|
|
6480
6462
|
'name'?: string | null;
|
|
6481
6463
|
/**
|
|
6482
6464
|
* Description of the LLM Provider.
|
|
@@ -6486,16 +6468,16 @@ export interface JsonApiLlmProviderOutAttributes {
|
|
|
6486
6468
|
* Required ID of the default model to use from the models list.
|
|
6487
6469
|
*/
|
|
6488
6470
|
'defaultModelId'?: string | null;
|
|
6489
|
-
'providerConfig'?:
|
|
6471
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
6490
6472
|
/**
|
|
6491
6473
|
* List of LLM models available for this provider.
|
|
6492
6474
|
*/
|
|
6493
|
-
'models'?: Array<
|
|
6475
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
6494
6476
|
}
|
|
6495
6477
|
/**
|
|
6496
6478
|
* LLM Model configuration (id, family) within a provider.
|
|
6497
6479
|
*/
|
|
6498
|
-
export interface
|
|
6480
|
+
export interface JsonApiLlmProviderInAttributesModelsInner {
|
|
6499
6481
|
/**
|
|
6500
6482
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
6501
6483
|
*/
|
|
@@ -6503,14 +6485,32 @@ export interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
6503
6485
|
/**
|
|
6504
6486
|
* Family of LLM models.
|
|
6505
6487
|
*/
|
|
6506
|
-
'family':
|
|
6488
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
6507
6489
|
}
|
|
6508
|
-
export type
|
|
6490
|
+
export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
6509
6491
|
/**
|
|
6510
|
-
* @type
|
|
6492
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
6511
6493
|
* Provider-specific configuration including authentication.
|
|
6512
6494
|
*/
|
|
6513
|
-
export type
|
|
6495
|
+
export type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
6496
|
+
export interface JsonApiLlmProviderInDocument {
|
|
6497
|
+
'data': JsonApiLlmProviderIn;
|
|
6498
|
+
}
|
|
6499
|
+
/**
|
|
6500
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
6501
|
+
*/
|
|
6502
|
+
export interface JsonApiLlmProviderOut {
|
|
6503
|
+
/**
|
|
6504
|
+
* Object type
|
|
6505
|
+
*/
|
|
6506
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6507
|
+
/**
|
|
6508
|
+
* API identifier of an object
|
|
6509
|
+
*/
|
|
6510
|
+
'id': string;
|
|
6511
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6512
|
+
}
|
|
6513
|
+
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6514
6514
|
export interface JsonApiLlmProviderOutDocument {
|
|
6515
6515
|
'data': JsonApiLlmProviderOut;
|
|
6516
6516
|
'links'?: ObjectLinks;
|
|
@@ -6532,7 +6532,7 @@ export interface JsonApiLlmProviderOutWithLinks {
|
|
|
6532
6532
|
* API identifier of an object
|
|
6533
6533
|
*/
|
|
6534
6534
|
'id': string;
|
|
6535
|
-
'attributes'?:
|
|
6535
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6536
6536
|
'links'?: ObjectLinks;
|
|
6537
6537
|
}
|
|
6538
6538
|
export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
|
|
@@ -6548,7 +6548,7 @@ export interface JsonApiLlmProviderPatch {
|
|
|
6548
6548
|
* API identifier of an object
|
|
6549
6549
|
*/
|
|
6550
6550
|
'id': string;
|
|
6551
|
-
'attributes'?:
|
|
6551
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6552
6552
|
}
|
|
6553
6553
|
export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
|
|
6554
6554
|
export interface JsonApiLlmProviderPatchDocument {
|
|
@@ -7362,7 +7362,7 @@ export interface JsonApiThemeIn {
|
|
|
7362
7362
|
* API identifier of an object
|
|
7363
7363
|
*/
|
|
7364
7364
|
'id': string;
|
|
7365
|
-
'attributes':
|
|
7365
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7366
7366
|
}
|
|
7367
7367
|
export type JsonApiThemeInTypeEnum = 'theme';
|
|
7368
7368
|
export interface JsonApiThemeInDocument {
|
|
@@ -7380,7 +7380,7 @@ export interface JsonApiThemeOut {
|
|
|
7380
7380
|
* API identifier of an object
|
|
7381
7381
|
*/
|
|
7382
7382
|
'id': string;
|
|
7383
|
-
'attributes':
|
|
7383
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7384
7384
|
}
|
|
7385
7385
|
export type JsonApiThemeOutTypeEnum = 'theme';
|
|
7386
7386
|
export interface JsonApiThemeOutDocument {
|
|
@@ -7404,7 +7404,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
7404
7404
|
* API identifier of an object
|
|
7405
7405
|
*/
|
|
7406
7406
|
'id': string;
|
|
7407
|
-
'attributes':
|
|
7407
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7408
7408
|
'links'?: ObjectLinks;
|
|
7409
7409
|
}
|
|
7410
7410
|
export type JsonApiThemeOutWithLinksTypeEnum = 'theme';
|
|
@@ -8366,13 +8366,24 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8366
8366
|
* API identifier of an object
|
|
8367
8367
|
*/
|
|
8368
8368
|
'id': string;
|
|
8369
|
-
'attributes'?:
|
|
8370
|
-
'relationships'?:
|
|
8369
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8370
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8371
8371
|
}
|
|
8372
8372
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
8373
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8374
|
+
'title'?: string;
|
|
8375
|
+
'description'?: string;
|
|
8376
|
+
'filterValues'?: Array<string>;
|
|
8377
|
+
}
|
|
8373
8378
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8374
8379
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
8375
8380
|
}
|
|
8381
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8382
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8383
|
+
}
|
|
8384
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8385
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
8386
|
+
}
|
|
8376
8387
|
/**
|
|
8377
8388
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8378
8389
|
*/
|
|
@@ -8394,15 +8405,10 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8394
8405
|
*/
|
|
8395
8406
|
'id': string;
|
|
8396
8407
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8397
|
-
'attributes'?:
|
|
8398
|
-
'relationships'?:
|
|
8408
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8409
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8399
8410
|
}
|
|
8400
8411
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
8401
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
8402
|
-
'title'?: string;
|
|
8403
|
-
'description'?: string;
|
|
8404
|
-
'filterValues'?: Array<string>;
|
|
8405
|
-
}
|
|
8406
8412
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
8407
8413
|
'data': JsonApiWorkspaceDataFilterSettingOut;
|
|
8408
8414
|
'links'?: ObjectLinks;
|
|
@@ -8423,12 +8429,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
8423
8429
|
*/
|
|
8424
8430
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8425
8431
|
}
|
|
8426
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
8427
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
8428
|
-
}
|
|
8429
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
8430
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
8431
|
-
}
|
|
8432
8432
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
8433
8433
|
/**
|
|
8434
8434
|
* Object type
|
|
@@ -8439,8 +8439,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8439
8439
|
*/
|
|
8440
8440
|
'id': string;
|
|
8441
8441
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8442
|
-
'attributes'?:
|
|
8443
|
-
'relationships'?:
|
|
8442
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8443
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8444
8444
|
'links'?: ObjectLinks;
|
|
8445
8445
|
}
|
|
8446
8446
|
export type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = 'workspaceDataFilterSetting';
|
|
@@ -8456,8 +8456,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8456
8456
|
* API identifier of an object
|
|
8457
8457
|
*/
|
|
8458
8458
|
'id': string;
|
|
8459
|
-
'attributes'?:
|
|
8460
|
-
'relationships'?:
|
|
8459
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8460
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8461
8461
|
}
|
|
8462
8462
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = 'workspaceDataFilterSetting';
|
|
8463
8463
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|