@gooddata/api-client-tiger 11.30.0-alpha.1 → 11.30.0-alpha.2
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.
|
@@ -4176,12 +4176,9 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4176
4176
|
* API identifier of an object
|
|
4177
4177
|
*/
|
|
4178
4178
|
'id': string;
|
|
4179
|
-
'attributes':
|
|
4179
|
+
'attributes': JsonApiCspDirectiveOutAttributes;
|
|
4180
4180
|
}
|
|
4181
4181
|
export type JsonApiCspDirectiveInTypeEnum = 'cspDirective';
|
|
4182
|
-
export interface JsonApiCspDirectiveInAttributes {
|
|
4183
|
-
'sources': Array<string>;
|
|
4184
|
-
}
|
|
4185
4182
|
export interface JsonApiCspDirectiveInDocument {
|
|
4186
4183
|
'data': JsonApiCspDirectiveIn;
|
|
4187
4184
|
}
|
|
@@ -4197,9 +4194,12 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4197
4194
|
* API identifier of an object
|
|
4198
4195
|
*/
|
|
4199
4196
|
'id': string;
|
|
4200
|
-
'attributes':
|
|
4197
|
+
'attributes': JsonApiCspDirectiveOutAttributes;
|
|
4201
4198
|
}
|
|
4202
4199
|
export type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
|
|
4200
|
+
export interface JsonApiCspDirectiveOutAttributes {
|
|
4201
|
+
'sources': Array<string>;
|
|
4202
|
+
}
|
|
4203
4203
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4204
4204
|
'data': JsonApiCspDirectiveOut;
|
|
4205
4205
|
'links'?: ObjectLinks;
|
|
@@ -4221,7 +4221,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4221
4221
|
* API identifier of an object
|
|
4222
4222
|
*/
|
|
4223
4223
|
'id': string;
|
|
4224
|
-
'attributes':
|
|
4224
|
+
'attributes': JsonApiCspDirectiveOutAttributes;
|
|
4225
4225
|
'links'?: ObjectLinks;
|
|
4226
4226
|
}
|
|
4227
4227
|
export type JsonApiCspDirectiveOutWithLinksTypeEnum = 'cspDirective';
|
|
@@ -4368,9 +4368,13 @@ export interface JsonApiCustomGeoCollectionIn {
|
|
|
4368
4368
|
* API identifier of an object
|
|
4369
4369
|
*/
|
|
4370
4370
|
'id': string;
|
|
4371
|
-
'attributes'?:
|
|
4371
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4372
4372
|
}
|
|
4373
4373
|
export type JsonApiCustomGeoCollectionInTypeEnum = 'customGeoCollection';
|
|
4374
|
+
export interface JsonApiCustomGeoCollectionInAttributes {
|
|
4375
|
+
'name'?: string | null;
|
|
4376
|
+
'description'?: string | null;
|
|
4377
|
+
}
|
|
4374
4378
|
export interface JsonApiCustomGeoCollectionInDocument {
|
|
4375
4379
|
'data': JsonApiCustomGeoCollectionIn;
|
|
4376
4380
|
}
|
|
@@ -4386,13 +4390,9 @@ export interface JsonApiCustomGeoCollectionOut {
|
|
|
4386
4390
|
* API identifier of an object
|
|
4387
4391
|
*/
|
|
4388
4392
|
'id': string;
|
|
4389
|
-
'attributes'?:
|
|
4393
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4390
4394
|
}
|
|
4391
4395
|
export type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
|
|
4392
|
-
export interface JsonApiCustomGeoCollectionOutAttributes {
|
|
4393
|
-
'name'?: string | null;
|
|
4394
|
-
'description'?: string | null;
|
|
4395
|
-
}
|
|
4396
4396
|
export interface JsonApiCustomGeoCollectionOutDocument {
|
|
4397
4397
|
'data': JsonApiCustomGeoCollectionOut;
|
|
4398
4398
|
'links'?: ObjectLinks;
|
|
@@ -4414,7 +4414,7 @@ export interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
4414
4414
|
* API identifier of an object
|
|
4415
4415
|
*/
|
|
4416
4416
|
'id': string;
|
|
4417
|
-
'attributes'?:
|
|
4417
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4418
4418
|
'links'?: ObjectLinks;
|
|
4419
4419
|
}
|
|
4420
4420
|
export type JsonApiCustomGeoCollectionOutWithLinksTypeEnum = 'customGeoCollection';
|
|
@@ -4430,7 +4430,7 @@ export interface JsonApiCustomGeoCollectionPatch {
|
|
|
4430
4430
|
* API identifier of an object
|
|
4431
4431
|
*/
|
|
4432
4432
|
'id': string;
|
|
4433
|
-
'attributes'?:
|
|
4433
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
4434
4434
|
}
|
|
4435
4435
|
export type JsonApiCustomGeoCollectionPatchTypeEnum = 'customGeoCollection';
|
|
4436
4436
|
export interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -5275,7 +5275,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5275
5275
|
* API identifier of an object
|
|
5276
5276
|
*/
|
|
5277
5277
|
'id': string;
|
|
5278
|
-
'attributes':
|
|
5278
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5279
5279
|
}
|
|
5280
5280
|
export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
|
|
5281
5281
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -5293,42 +5293,9 @@ export interface JsonApiExportTemplateOut {
|
|
|
5293
5293
|
* API identifier of an object
|
|
5294
5294
|
*/
|
|
5295
5295
|
'id': string;
|
|
5296
|
-
'attributes':
|
|
5296
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5297
5297
|
}
|
|
5298
5298
|
export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
5299
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5300
|
-
/**
|
|
5301
|
-
* User-facing name of the Slides template.
|
|
5302
|
-
*/
|
|
5303
|
-
'name': string;
|
|
5304
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5305
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5306
|
-
}
|
|
5307
|
-
/**
|
|
5308
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5309
|
-
*/
|
|
5310
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5311
|
-
/**
|
|
5312
|
-
* Export types this template applies to.
|
|
5313
|
-
*/
|
|
5314
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5315
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
5316
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
5317
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5318
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5319
|
-
}
|
|
5320
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5321
|
-
/**
|
|
5322
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5323
|
-
*/
|
|
5324
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5325
|
-
/**
|
|
5326
|
-
* Export types this template applies to.
|
|
5327
|
-
*/
|
|
5328
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5329
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5330
|
-
}
|
|
5331
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5332
5299
|
export interface JsonApiExportTemplateOutDocument {
|
|
5333
5300
|
'data': JsonApiExportTemplateOut;
|
|
5334
5301
|
'links'?: ObjectLinks;
|
|
@@ -5350,7 +5317,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5350
5317
|
* API identifier of an object
|
|
5351
5318
|
*/
|
|
5352
5319
|
'id': string;
|
|
5353
|
-
'attributes':
|
|
5320
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5354
5321
|
'links'?: ObjectLinks;
|
|
5355
5322
|
}
|
|
5356
5323
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
|
|
@@ -5374,8 +5341,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5374
5341
|
* User-facing name of the Slides template.
|
|
5375
5342
|
*/
|
|
5376
5343
|
'name'?: string;
|
|
5377
|
-
'dashboardSlidesTemplate'?:
|
|
5378
|
-
'widgetSlidesTemplate'?:
|
|
5344
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5345
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5379
5346
|
}
|
|
5380
5347
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5381
5348
|
'data': JsonApiExportTemplatePatch;
|
|
@@ -5392,9 +5359,42 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5392
5359
|
* API identifier of an object
|
|
5393
5360
|
*/
|
|
5394
5361
|
'id'?: string;
|
|
5395
|
-
'attributes':
|
|
5362
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5396
5363
|
}
|
|
5397
5364
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
|
|
5365
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5366
|
+
/**
|
|
5367
|
+
* User-facing name of the Slides template.
|
|
5368
|
+
*/
|
|
5369
|
+
'name': string;
|
|
5370
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5371
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5372
|
+
}
|
|
5373
|
+
/**
|
|
5374
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5375
|
+
*/
|
|
5376
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5377
|
+
/**
|
|
5378
|
+
* Export types this template applies to.
|
|
5379
|
+
*/
|
|
5380
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5381
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
5382
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
5383
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5384
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5385
|
+
}
|
|
5386
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5387
|
+
/**
|
|
5388
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5389
|
+
*/
|
|
5390
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5391
|
+
/**
|
|
5392
|
+
* Export types this template applies to.
|
|
5393
|
+
*/
|
|
5394
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5395
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5396
|
+
}
|
|
5397
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5398
5398
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5399
5399
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
5400
5400
|
}
|
|
@@ -5948,9 +5948,12 @@ export interface JsonApiJwkIn {
|
|
|
5948
5948
|
* API identifier of an object
|
|
5949
5949
|
*/
|
|
5950
5950
|
'id': string;
|
|
5951
|
-
'attributes'?:
|
|
5951
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
5952
5952
|
}
|
|
5953
5953
|
export type JsonApiJwkInTypeEnum = 'jwk';
|
|
5954
|
+
export interface JsonApiJwkInAttributes {
|
|
5955
|
+
'content'?: RsaSpecification;
|
|
5956
|
+
}
|
|
5954
5957
|
export interface JsonApiJwkInDocument {
|
|
5955
5958
|
'data': JsonApiJwkIn;
|
|
5956
5959
|
}
|
|
@@ -5966,12 +5969,9 @@ export interface JsonApiJwkOut {
|
|
|
5966
5969
|
* API identifier of an object
|
|
5967
5970
|
*/
|
|
5968
5971
|
'id': string;
|
|
5969
|
-
'attributes'?:
|
|
5972
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
5970
5973
|
}
|
|
5971
5974
|
export type JsonApiJwkOutTypeEnum = 'jwk';
|
|
5972
|
-
export interface JsonApiJwkOutAttributes {
|
|
5973
|
-
'content'?: RsaSpecification;
|
|
5974
|
-
}
|
|
5975
5975
|
export interface JsonApiJwkOutDocument {
|
|
5976
5976
|
'data': JsonApiJwkOut;
|
|
5977
5977
|
'links'?: ObjectLinks;
|
|
@@ -5993,7 +5993,7 @@ export interface JsonApiJwkOutWithLinks {
|
|
|
5993
5993
|
* API identifier of an object
|
|
5994
5994
|
*/
|
|
5995
5995
|
'id': string;
|
|
5996
|
-
'attributes'?:
|
|
5996
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
5997
5997
|
'links'?: ObjectLinks;
|
|
5998
5998
|
}
|
|
5999
5999
|
export type JsonApiJwkOutWithLinksTypeEnum = 'jwk';
|
|
@@ -6009,7 +6009,7 @@ export interface JsonApiJwkPatch {
|
|
|
6009
6009
|
* API identifier of an object
|
|
6010
6010
|
*/
|
|
6011
6011
|
'id': string;
|
|
6012
|
-
'attributes'?:
|
|
6012
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
6013
6013
|
}
|
|
6014
6014
|
export type JsonApiJwkPatchTypeEnum = 'jwk';
|
|
6015
6015
|
export interface JsonApiJwkPatchDocument {
|
|
@@ -6143,12 +6143,9 @@ export interface JsonApiKnowledgeRecommendationOutList {
|
|
|
6143
6143
|
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
6144
6144
|
}
|
|
6145
6145
|
export interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
6146
|
-
'metric'?:
|
|
6146
|
+
'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6147
6147
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6148
6148
|
}
|
|
6149
|
-
export interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
6150
|
-
'data': JsonApiMetricLinkage | null;
|
|
6151
|
-
}
|
|
6152
6149
|
export interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
6153
6150
|
/**
|
|
6154
6151
|
* Object type
|
|
@@ -6335,9 +6332,12 @@ export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
|
6335
6332
|
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
6336
6333
|
}
|
|
6337
6334
|
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
6338
|
-
'metric':
|
|
6335
|
+
'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6339
6336
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6340
6337
|
}
|
|
6338
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
6339
|
+
'data': JsonApiMetricLinkage | null;
|
|
6340
|
+
}
|
|
6341
6341
|
/**
|
|
6342
6342
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6343
6343
|
*/
|
|
@@ -6624,28 +6624,10 @@ export interface JsonApiLlmProviderIn {
|
|
|
6624
6624
|
* API identifier of an object
|
|
6625
6625
|
*/
|
|
6626
6626
|
'id': string;
|
|
6627
|
-
'attributes'?:
|
|
6627
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6628
6628
|
}
|
|
6629
6629
|
export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
6630
|
-
export interface
|
|
6631
|
-
'data': JsonApiLlmProviderIn;
|
|
6632
|
-
}
|
|
6633
|
-
/**
|
|
6634
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
6635
|
-
*/
|
|
6636
|
-
export interface JsonApiLlmProviderOut {
|
|
6637
|
-
/**
|
|
6638
|
-
* Object type
|
|
6639
|
-
*/
|
|
6640
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6641
|
-
/**
|
|
6642
|
-
* API identifier of an object
|
|
6643
|
-
*/
|
|
6644
|
-
'id': string;
|
|
6645
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
6646
|
-
}
|
|
6647
|
-
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6648
|
-
export interface JsonApiLlmProviderOutAttributes {
|
|
6630
|
+
export interface JsonApiLlmProviderInAttributes {
|
|
6649
6631
|
'name'?: string | null;
|
|
6650
6632
|
/**
|
|
6651
6633
|
* Description of the LLM Provider.
|
|
@@ -6655,16 +6637,16 @@ export interface JsonApiLlmProviderOutAttributes {
|
|
|
6655
6637
|
* Required ID of the default model to use from the models list.
|
|
6656
6638
|
*/
|
|
6657
6639
|
'defaultModelId'?: string | null;
|
|
6658
|
-
'providerConfig'?:
|
|
6640
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
6659
6641
|
/**
|
|
6660
6642
|
* List of LLM models available for this provider.
|
|
6661
6643
|
*/
|
|
6662
|
-
'models'?: Array<
|
|
6644
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
6663
6645
|
}
|
|
6664
6646
|
/**
|
|
6665
6647
|
* LLM Model configuration (id, family) within a provider.
|
|
6666
6648
|
*/
|
|
6667
|
-
export interface
|
|
6649
|
+
export interface JsonApiLlmProviderInAttributesModelsInner {
|
|
6668
6650
|
/**
|
|
6669
6651
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
6670
6652
|
*/
|
|
@@ -6672,14 +6654,32 @@ export interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
6672
6654
|
/**
|
|
6673
6655
|
* Family of LLM models.
|
|
6674
6656
|
*/
|
|
6675
|
-
'family':
|
|
6657
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
6676
6658
|
}
|
|
6677
|
-
export type
|
|
6659
|
+
export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
6678
6660
|
/**
|
|
6679
|
-
* @type
|
|
6661
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
6680
6662
|
* Provider-specific configuration including authentication.
|
|
6681
6663
|
*/
|
|
6682
|
-
export type
|
|
6664
|
+
export type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
6665
|
+
export interface JsonApiLlmProviderInDocument {
|
|
6666
|
+
'data': JsonApiLlmProviderIn;
|
|
6667
|
+
}
|
|
6668
|
+
/**
|
|
6669
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
6670
|
+
*/
|
|
6671
|
+
export interface JsonApiLlmProviderOut {
|
|
6672
|
+
/**
|
|
6673
|
+
* Object type
|
|
6674
|
+
*/
|
|
6675
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6676
|
+
/**
|
|
6677
|
+
* API identifier of an object
|
|
6678
|
+
*/
|
|
6679
|
+
'id': string;
|
|
6680
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6681
|
+
}
|
|
6682
|
+
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6683
6683
|
export interface JsonApiLlmProviderOutDocument {
|
|
6684
6684
|
'data': JsonApiLlmProviderOut;
|
|
6685
6685
|
'links'?: ObjectLinks;
|
|
@@ -6701,7 +6701,7 @@ export interface JsonApiLlmProviderOutWithLinks {
|
|
|
6701
6701
|
* API identifier of an object
|
|
6702
6702
|
*/
|
|
6703
6703
|
'id': string;
|
|
6704
|
-
'attributes'?:
|
|
6704
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6705
6705
|
'links'?: ObjectLinks;
|
|
6706
6706
|
}
|
|
6707
6707
|
export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
|
|
@@ -6717,7 +6717,7 @@ export interface JsonApiLlmProviderPatch {
|
|
|
6717
6717
|
* API identifier of an object
|
|
6718
6718
|
*/
|
|
6719
6719
|
'id': string;
|
|
6720
|
-
'attributes'?:
|
|
6720
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6721
6721
|
}
|
|
6722
6722
|
export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
|
|
6723
6723
|
export interface JsonApiLlmProviderPatchDocument {
|