@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.3

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.
@@ -2927,7 +2927,7 @@ export interface JsonApiAggregatedFactOut {
2927
2927
  * API identifier of an object
2928
2928
  */
2929
2929
  'id': string;
2930
- 'meta'?: JsonApiFactOutMeta;
2930
+ 'meta'?: JsonApiExportDefinitionOutMeta;
2931
2931
  'attributes': JsonApiAggregatedFactOutAttributes;
2932
2932
  'relationships'?: JsonApiAggregatedFactOutRelationships;
2933
2933
  }
@@ -2962,14 +2962,14 @@ export type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLinks | Json
2962
2962
  export interface JsonApiAggregatedFactOutList {
2963
2963
  'data': Array<JsonApiAggregatedFactOutWithLinks>;
2964
2964
  'links'?: ListLinks;
2965
- 'meta'?: JsonApiApiTokenOutListMeta;
2965
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
2966
2966
  /**
2967
2967
  * Included resources
2968
2968
  */
2969
2969
  'included'?: Array<JsonApiAggregatedFactOutIncludes>;
2970
2970
  }
2971
2971
  export interface JsonApiAggregatedFactOutRelationships {
2972
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
2972
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
2973
2973
  'sourceFact'?: JsonApiAggregatedFactOutRelationshipsSourceFact;
2974
2974
  }
2975
2975
  export interface JsonApiAggregatedFactOutRelationshipsSourceFact {
@@ -2984,7 +2984,7 @@ export interface JsonApiAggregatedFactOutWithLinks {
2984
2984
  * API identifier of an object
2985
2985
  */
2986
2986
  'id': string;
2987
- 'meta'?: JsonApiFactOutMeta;
2987
+ 'meta'?: JsonApiExportDefinitionOutMeta;
2988
2988
  'attributes': JsonApiAggregatedFactOutAttributes;
2989
2989
  'relationships'?: JsonApiAggregatedFactOutRelationships;
2990
2990
  'links'?: ObjectLinks;
@@ -3086,7 +3086,7 @@ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOu
3086
3086
  export interface JsonApiAnalyticalDashboardOutList {
3087
3087
  'data': Array<JsonApiAnalyticalDashboardOutWithLinks>;
3088
3088
  'links'?: ListLinks;
3089
- 'meta'?: JsonApiApiTokenOutListMeta;
3089
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3090
3090
  /**
3091
3091
  * Included resources
3092
3092
  */
@@ -3097,7 +3097,7 @@ export interface JsonApiAnalyticalDashboardOutMeta {
3097
3097
  * List of valid permissions for a logged-in user.
3098
3098
  */
3099
3099
  'permissions'?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
3100
- 'origin'?: JsonApiFactOutMetaOrigin;
3100
+ 'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
3101
3101
  'accessInfo'?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
3102
3102
  }
3103
3103
  export type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = 'EDIT' | 'SHARE' | 'VIEW';
@@ -3107,15 +3107,26 @@ export interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
3107
3107
  */
3108
3108
  'private': boolean;
3109
3109
  }
3110
+ export interface JsonApiAnalyticalDashboardOutMetaOrigin {
3111
+ /**
3112
+ * defines type of the origin of the entity
3113
+ */
3114
+ 'originType': JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
3115
+ /**
3116
+ * defines id of the workspace where the entity comes from
3117
+ */
3118
+ 'originId': string;
3119
+ }
3120
+ export type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
3110
3121
  export interface JsonApiAnalyticalDashboardOutRelationships {
3111
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3112
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3113
- 'certifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3122
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3123
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3124
+ 'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3114
3125
  'visualizationObjects'?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
3115
3126
  'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
3116
- 'labels'?: JsonApiAttributeOutRelationshipsLabels;
3117
- 'metrics'?: JsonApiMetricOutRelationshipsMetrics;
3118
- 'datasets'?: JsonApiMetricOutRelationshipsDatasets;
3127
+ 'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
3128
+ 'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
3129
+ 'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
3119
3130
  'filterContexts'?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
3120
3131
  'dashboardPlugins'?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
3121
3132
  }
@@ -3125,18 +3136,39 @@ export interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards
3125
3136
  */
3126
3137
  'data': Array<JsonApiAnalyticalDashboardLinkage>;
3127
3138
  }
3139
+ export interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
3140
+ 'data': JsonApiUserIdentifierLinkage | null;
3141
+ }
3128
3142
  export interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
3129
3143
  /**
3130
3144
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3131
3145
  */
3132
3146
  'data': Array<JsonApiDashboardPluginLinkage>;
3133
3147
  }
3148
+ export interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
3149
+ /**
3150
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3151
+ */
3152
+ 'data': Array<JsonApiDatasetLinkage>;
3153
+ }
3134
3154
  export interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
3135
3155
  /**
3136
3156
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3137
3157
  */
3138
3158
  'data': Array<JsonApiFilterContextLinkage>;
3139
3159
  }
3160
+ export interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
3161
+ /**
3162
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3163
+ */
3164
+ 'data': Array<JsonApiLabelLinkage>;
3165
+ }
3166
+ export interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
3167
+ /**
3168
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3169
+ */
3170
+ 'data': Array<JsonApiMetricLinkage>;
3171
+ }
3140
3172
  export interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
3141
3173
  /**
3142
3174
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -3270,10 +3302,7 @@ export interface JsonApiApiTokenOutDocument {
3270
3302
  export interface JsonApiApiTokenOutList {
3271
3303
  'data': Array<JsonApiApiTokenOutWithLinks>;
3272
3304
  'links'?: ListLinks;
3273
- 'meta'?: JsonApiApiTokenOutListMeta;
3274
- }
3275
- export interface JsonApiApiTokenOutListMeta {
3276
- 'page'?: PageMetadata;
3305
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3277
3306
  }
3278
3307
  export interface JsonApiApiTokenOutWithLinks {
3279
3308
  /**
@@ -3336,7 +3365,7 @@ export interface JsonApiAttributeHierarchyOut {
3336
3365
  * API identifier of an object
3337
3366
  */
3338
3367
  'id': string;
3339
- 'meta'?: JsonApiFactOutMeta;
3368
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3340
3369
  'attributes'?: JsonApiAttributeHierarchyOutAttributes;
3341
3370
  'relationships'?: JsonApiAttributeHierarchyOutRelationships;
3342
3371
  }
@@ -3377,16 +3406,16 @@ export type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWithLinks
3377
3406
  export interface JsonApiAttributeHierarchyOutList {
3378
3407
  'data': Array<JsonApiAttributeHierarchyOutWithLinks>;
3379
3408
  'links'?: ListLinks;
3380
- 'meta'?: JsonApiApiTokenOutListMeta;
3409
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3381
3410
  /**
3382
3411
  * Included resources
3383
3412
  */
3384
3413
  'included'?: Array<JsonApiAttributeHierarchyOutIncludes>;
3385
3414
  }
3386
3415
  export interface JsonApiAttributeHierarchyOutRelationships {
3387
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3388
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3389
- 'attributes'?: JsonApiMetricOutRelationshipsAttributes;
3416
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3417
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3418
+ 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
3390
3419
  }
3391
3420
  export interface JsonApiAttributeHierarchyOutWithLinks {
3392
3421
  /**
@@ -3397,7 +3426,7 @@ export interface JsonApiAttributeHierarchyOutWithLinks {
3397
3426
  * API identifier of an object
3398
3427
  */
3399
3428
  'id': string;
3400
- 'meta'?: JsonApiFactOutMeta;
3429
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3401
3430
  'attributes'?: JsonApiAttributeHierarchyOutAttributes;
3402
3431
  'relationships'?: JsonApiAttributeHierarchyOutRelationships;
3403
3432
  'links'?: ObjectLinks;
@@ -3441,7 +3470,7 @@ export interface JsonApiAttributeOut {
3441
3470
  * API identifier of an object
3442
3471
  */
3443
3472
  'id': string;
3444
- 'meta'?: JsonApiFactOutMeta;
3473
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3445
3474
  'attributes'?: JsonApiAttributeOutAttributes;
3446
3475
  'relationships'?: JsonApiAttributeOutRelationships;
3447
3476
  }
@@ -3482,16 +3511,16 @@ export type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWithLinks
3482
3511
  export interface JsonApiAttributeOutList {
3483
3512
  'data': Array<JsonApiAttributeOutWithLinks>;
3484
3513
  'links'?: ListLinks;
3485
- 'meta'?: JsonApiApiTokenOutListMeta;
3514
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3486
3515
  /**
3487
3516
  * Included resources
3488
3517
  */
3489
3518
  'included'?: Array<JsonApiAttributeOutIncludes>;
3490
3519
  }
3491
3520
  export interface JsonApiAttributeOutRelationships {
3492
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
3521
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
3493
3522
  'defaultView'?: JsonApiAttributeOutRelationshipsDefaultView;
3494
- 'labels'?: JsonApiAttributeOutRelationshipsLabels;
3523
+ 'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
3495
3524
  'attributeHierarchies'?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
3496
3525
  }
3497
3526
  export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
@@ -3500,15 +3529,12 @@ export interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
3500
3529
  */
3501
3530
  'data': Array<JsonApiAttributeHierarchyLinkage>;
3502
3531
  }
3532
+ export interface JsonApiAttributeOutRelationshipsDataset {
3533
+ 'data': JsonApiDatasetLinkage | null;
3534
+ }
3503
3535
  export interface JsonApiAttributeOutRelationshipsDefaultView {
3504
3536
  'data': JsonApiLabelLinkage | null;
3505
3537
  }
3506
- export interface JsonApiAttributeOutRelationshipsLabels {
3507
- /**
3508
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3509
- */
3510
- 'data': Array<JsonApiLabelLinkage>;
3511
- }
3512
3538
  export interface JsonApiAttributeOutWithLinks {
3513
3539
  /**
3514
3540
  * Object type
@@ -3518,7 +3544,7 @@ export interface JsonApiAttributeOutWithLinks {
3518
3544
  * API identifier of an object
3519
3545
  */
3520
3546
  'id': string;
3521
- 'meta'?: JsonApiFactOutMeta;
3547
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3522
3548
  'attributes'?: JsonApiAttributeOutAttributes;
3523
3549
  'relationships'?: JsonApiAttributeOutRelationships;
3524
3550
  'links'?: ObjectLinks;
@@ -3536,10 +3562,15 @@ export interface JsonApiAttributePatch {
3536
3562
  * API identifier of an object
3537
3563
  */
3538
3564
  'id': string;
3539
- 'attributes'?: JsonApiLabelPatchAttributes;
3565
+ 'attributes'?: JsonApiAttributePatchAttributes;
3540
3566
  'relationships'?: JsonApiAttributePatchRelationships;
3541
3567
  }
3542
3568
  export type JsonApiAttributePatchTypeEnum = 'attribute';
3569
+ export interface JsonApiAttributePatchAttributes {
3570
+ 'title'?: string;
3571
+ 'description'?: string;
3572
+ 'tags'?: Array<string>;
3573
+ }
3543
3574
  export interface JsonApiAttributePatchDocument {
3544
3575
  'data': JsonApiAttributePatch;
3545
3576
  }
@@ -3558,13 +3589,52 @@ export interface JsonApiAutomationIn {
3558
3589
  * API identifier of an object
3559
3590
  */
3560
3591
  'id': string;
3561
- 'attributes'?: JsonApiAutomationPatchAttributes;
3562
- 'relationships'?: JsonApiAutomationPatchRelationships;
3592
+ 'attributes'?: JsonApiAutomationInAttributes;
3593
+ 'relationships'?: JsonApiAutomationInRelationships;
3563
3594
  }
3564
3595
  export type JsonApiAutomationInTypeEnum = 'automation';
3596
+ export interface JsonApiAutomationInAttributes {
3597
+ 'title'?: string;
3598
+ 'description'?: string;
3599
+ 'tags'?: Array<string>;
3600
+ 'areRelationsValid'?: boolean;
3601
+ /**
3602
+ * Additional details to be included in the automated message.
3603
+ */
3604
+ 'details'?: object;
3605
+ 'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
3606
+ /**
3607
+ * Current state of the automation.
3608
+ */
3609
+ 'state'?: JsonApiAutomationInAttributesStateEnum;
3610
+ /**
3611
+ * Specify automation evaluation mode.
3612
+ */
3613
+ 'evaluationMode'?: JsonApiAutomationInAttributesEvaluationModeEnum;
3614
+ 'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
3615
+ 'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
3616
+ 'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
3617
+ 'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
3618
+ 'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
3619
+ 'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
3620
+ 'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
3621
+ 'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
3622
+ /**
3623
+ * External recipients of the automation action results.
3624
+ */
3625
+ 'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
3626
+ }
3627
+ export type JsonApiAutomationInAttributesStateEnum = 'ACTIVE' | 'PAUSED';
3628
+ export type JsonApiAutomationInAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
3565
3629
  export interface JsonApiAutomationInDocument {
3566
3630
  'data': JsonApiAutomationIn;
3567
3631
  }
3632
+ export interface JsonApiAutomationInRelationships {
3633
+ 'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
3634
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
3635
+ 'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
3636
+ 'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
3637
+ }
3568
3638
  /**
3569
3639
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
3570
3640
  */
@@ -3585,7 +3655,7 @@ export interface JsonApiAutomationOut {
3585
3655
  * API identifier of an object
3586
3656
  */
3587
3657
  'id': string;
3588
- 'meta'?: JsonApiFactOutMeta;
3658
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3589
3659
  'attributes'?: JsonApiAutomationOutAttributes;
3590
3660
  'relationships'?: JsonApiAutomationOutRelationships;
3591
3661
  }
@@ -3599,7 +3669,7 @@ export interface JsonApiAutomationOutAttributes {
3599
3669
  * Additional details to be included in the automated message.
3600
3670
  */
3601
3671
  'details'?: object;
3602
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
3672
+ 'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
3603
3673
  /**
3604
3674
  * Current state of the automation.
3605
3675
  */
@@ -3608,18 +3678,18 @@ export interface JsonApiAutomationOutAttributes {
3608
3678
  * Specify automation evaluation mode.
3609
3679
  */
3610
3680
  'evaluationMode'?: JsonApiAutomationOutAttributesEvaluationModeEnum;
3611
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
3612
- 'alert'?: JsonApiAutomationOutAttributesAlert;
3613
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
3614
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
3615
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
3616
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
3617
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
3618
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
3681
+ 'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
3682
+ 'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
3683
+ 'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
3684
+ 'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
3685
+ 'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
3686
+ 'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
3687
+ 'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
3688
+ 'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
3619
3689
  /**
3620
3690
  * External recipients of the automation action results.
3621
3691
  */
3622
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
3692
+ 'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
3623
3693
  /**
3624
3694
  * Time of the entity creation.
3625
3695
  */
@@ -3631,70 +3701,6 @@ export interface JsonApiAutomationOutAttributes {
3631
3701
  }
3632
3702
  export type JsonApiAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
3633
3703
  export type JsonApiAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
3634
- export interface JsonApiAutomationOutAttributesAlert {
3635
- 'execution': AlertAfm;
3636
- 'condition': AlertCondition;
3637
- /**
3638
- * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met. ONCE_PER_INTERVAL - alert is triggered when the condition is met, then suppressed for the interval. If no interval is specified, it behaves as ALWAYS.
3639
- */
3640
- 'trigger'?: JsonApiAutomationOutAttributesAlertTriggerEnum;
3641
- /**
3642
- * Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
3643
- */
3644
- 'interval'?: JsonApiAutomationOutAttributesAlertIntervalEnum;
3645
- }
3646
- export type JsonApiAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
3647
- export type JsonApiAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
3648
- export interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
3649
- 'requestPayload': DashboardTabularExportRequestV2;
3650
- }
3651
- export interface JsonApiAutomationOutAttributesExternalRecipientsInner {
3652
- /**
3653
- * E-mail address to send notifications from.
3654
- */
3655
- 'email': string;
3656
- }
3657
- export interface JsonApiAutomationOutAttributesImageExportsInner {
3658
- 'requestPayload': ImageExportRequest;
3659
- }
3660
- /**
3661
- * Additional information for the automation.
3662
- */
3663
- export interface JsonApiAutomationOutAttributesMetadata {
3664
- [key: string]: any;
3665
- 'widget'?: string;
3666
- 'visibleFilters'?: Array<VisibleFilter>;
3667
- }
3668
- export interface JsonApiAutomationOutAttributesRawExportsInner {
3669
- 'requestPayload': RawExportAutomationRequest;
3670
- }
3671
- export interface JsonApiAutomationOutAttributesSchedule {
3672
- /**
3673
- * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
3674
- */
3675
- 'cron': string;
3676
- /**
3677
- * Human-readable description of the cron expression.
3678
- */
3679
- 'cronDescription'?: string;
3680
- /**
3681
- * Timezone in which the schedule is defined.
3682
- */
3683
- 'timezone': string;
3684
- /**
3685
- * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
3686
- */
3687
- 'firstRun'?: string;
3688
- }
3689
- export interface JsonApiAutomationOutAttributesSlidesExportsInner {
3690
- 'requestPayload': SlidesExportRequest;
3691
- }
3692
- export interface JsonApiAutomationOutAttributesTabularExportsInner {
3693
- 'requestPayload': TabularExportRequest;
3694
- }
3695
- export interface JsonApiAutomationOutAttributesVisualExportsInner {
3696
- 'requestPayload': VisualExportRequest;
3697
- }
3698
3704
  export interface JsonApiAutomationOutDocument {
3699
3705
  'data': JsonApiAutomationOut;
3700
3706
  'links'?: ObjectLinks;
@@ -3713,41 +3719,20 @@ export type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOutWithLink
3713
3719
  export interface JsonApiAutomationOutList {
3714
3720
  'data': Array<JsonApiAutomationOutWithLinks>;
3715
3721
  'links'?: ListLinks;
3716
- 'meta'?: JsonApiApiTokenOutListMeta;
3722
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3717
3723
  /**
3718
3724
  * Included resources
3719
3725
  */
3720
3726
  'included'?: Array<JsonApiAutomationOutIncludes>;
3721
3727
  }
3722
3728
  export interface JsonApiAutomationOutRelationships {
3723
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
3724
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
3725
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3726
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
3727
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
3728
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
3729
- 'automationResults'?: JsonApiAutomationOutRelationshipsAutomationResults;
3730
- }
3731
- export interface JsonApiAutomationOutRelationshipsAutomationResults {
3732
- /**
3733
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3734
- */
3735
- 'data': Array<JsonApiAutomationResultLinkage>;
3736
- }
3737
- export interface JsonApiAutomationOutRelationshipsExportDefinitions {
3738
- /**
3739
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3740
- */
3741
- 'data': Array<JsonApiExportDefinitionLinkage>;
3742
- }
3743
- export interface JsonApiAutomationOutRelationshipsNotificationChannel {
3744
- 'data': JsonApiNotificationChannelLinkage | null;
3745
- }
3746
- export interface JsonApiAutomationOutRelationshipsRecipients {
3747
- /**
3748
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3749
- */
3750
- 'data': Array<JsonApiUserLinkage>;
3729
+ 'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
3730
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
3731
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3732
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
3733
+ 'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
3734
+ 'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
3735
+ 'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
3751
3736
  }
3752
3737
  export interface JsonApiAutomationOutWithLinks {
3753
3738
  /**
@@ -3758,7 +3743,7 @@ export interface JsonApiAutomationOutWithLinks {
3758
3743
  * API identifier of an object
3759
3744
  */
3760
3745
  'id': string;
3761
- 'meta'?: JsonApiFactOutMeta;
3746
+ 'meta'?: JsonApiExportDefinitionOutMeta;
3762
3747
  'attributes'?: JsonApiAutomationOutAttributes;
3763
3748
  'relationships'?: JsonApiAutomationOutRelationships;
3764
3749
  'links'?: ObjectLinks;
@@ -3776,52 +3761,13 @@ export interface JsonApiAutomationPatch {
3776
3761
  * API identifier of an object
3777
3762
  */
3778
3763
  'id': string;
3779
- 'attributes'?: JsonApiAutomationPatchAttributes;
3780
- 'relationships'?: JsonApiAutomationPatchRelationships;
3764
+ 'attributes'?: JsonApiAutomationInAttributes;
3765
+ 'relationships'?: JsonApiAutomationInRelationships;
3781
3766
  }
3782
3767
  export type JsonApiAutomationPatchTypeEnum = 'automation';
3783
- export interface JsonApiAutomationPatchAttributes {
3784
- 'title'?: string;
3785
- 'description'?: string;
3786
- 'tags'?: Array<string>;
3787
- 'areRelationsValid'?: boolean;
3788
- /**
3789
- * Additional details to be included in the automated message.
3790
- */
3791
- 'details'?: object;
3792
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
3793
- /**
3794
- * Current state of the automation.
3795
- */
3796
- 'state'?: JsonApiAutomationPatchAttributesStateEnum;
3797
- /**
3798
- * Specify automation evaluation mode.
3799
- */
3800
- 'evaluationMode'?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
3801
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
3802
- 'alert'?: JsonApiAutomationOutAttributesAlert;
3803
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
3804
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
3805
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
3806
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
3807
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
3808
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
3809
- /**
3810
- * External recipients of the automation action results.
3811
- */
3812
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
3813
- }
3814
- export type JsonApiAutomationPatchAttributesStateEnum = 'ACTIVE' | 'PAUSED';
3815
- export type JsonApiAutomationPatchAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
3816
3768
  export interface JsonApiAutomationPatchDocument {
3817
3769
  'data': JsonApiAutomationPatch;
3818
3770
  }
3819
- export interface JsonApiAutomationPatchRelationships {
3820
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
3821
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
3822
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
3823
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
3824
- }
3825
3771
  /**
3826
3772
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
3827
3773
  */
@@ -3865,14 +3811,17 @@ export type JsonApiAutomationResultOutAttributesStatusEnum = 'SUCCESS' | 'FAILED
3865
3811
  export interface JsonApiAutomationResultOutList {
3866
3812
  'data': Array<JsonApiAutomationResultOutWithLinks>;
3867
3813
  'links'?: ListLinks;
3868
- 'meta'?: JsonApiApiTokenOutListMeta;
3814
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3869
3815
  /**
3870
3816
  * Included resources
3871
3817
  */
3872
3818
  'included'?: Array<JsonApiAutomationOutWithLinks>;
3873
3819
  }
3874
3820
  export interface JsonApiAutomationResultOutRelationships {
3875
- 'automation'?: JsonApiExportDefinitionOutRelationshipsAutomation;
3821
+ 'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
3822
+ }
3823
+ export interface JsonApiAutomationResultOutRelationshipsAutomation {
3824
+ 'data': JsonApiAutomationLinkage | null;
3876
3825
  }
3877
3826
  export interface JsonApiAutomationResultOutWithLinks {
3878
3827
  /**
@@ -3938,7 +3887,7 @@ export interface JsonApiColorPaletteOutDocument {
3938
3887
  export interface JsonApiColorPaletteOutList {
3939
3888
  'data': Array<JsonApiColorPaletteOutWithLinks>;
3940
3889
  'links'?: ListLinks;
3941
- 'meta'?: JsonApiApiTokenOutListMeta;
3890
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
3942
3891
  }
3943
3892
  export interface JsonApiColorPaletteOutWithLinks {
3944
3893
  /**
@@ -3990,16 +3939,9 @@ export interface JsonApiCookieSecurityConfigurationIn {
3990
3939
  * API identifier of an object
3991
3940
  */
3992
3941
  'id': string;
3993
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
3942
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
3994
3943
  }
3995
3944
  export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
3996
- export interface JsonApiCookieSecurityConfigurationInAttributes {
3997
- 'lastRotation'?: string;
3998
- /**
3999
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4000
- */
4001
- 'rotationInterval'?: string;
4002
- }
4003
3945
  export interface JsonApiCookieSecurityConfigurationInDocument {
4004
3946
  'data': JsonApiCookieSecurityConfigurationIn;
4005
3947
  }
@@ -4015,9 +3957,16 @@ export interface JsonApiCookieSecurityConfigurationOut {
4015
3957
  * API identifier of an object
4016
3958
  */
4017
3959
  'id': string;
4018
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
3960
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
4019
3961
  }
4020
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
+ }
4021
3970
  export interface JsonApiCookieSecurityConfigurationOutDocument {
4022
3971
  'data': JsonApiCookieSecurityConfigurationOut;
4023
3972
  'links'?: ObjectLinks;
@@ -4034,7 +3983,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4034
3983
  * API identifier of an object
4035
3984
  */
4036
3985
  'id': string;
4037
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
3986
+ 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
4038
3987
  }
4039
3988
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
4040
3989
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -4086,7 +4035,7 @@ export interface JsonApiCspDirectiveOutDocument {
4086
4035
  export interface JsonApiCspDirectiveOutList {
4087
4036
  'data': Array<JsonApiCspDirectiveOutWithLinks>;
4088
4037
  'links'?: ListLinks;
4089
- 'meta'?: JsonApiApiTokenOutListMeta;
4038
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4090
4039
  }
4091
4040
  export interface JsonApiCspDirectiveOutWithLinks {
4092
4041
  /**
@@ -4134,7 +4083,7 @@ export interface JsonApiCustomApplicationSettingIn {
4134
4083
  * API identifier of an object
4135
4084
  */
4136
4085
  'id': string;
4137
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4086
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4138
4087
  }
4139
4088
  export type JsonApiCustomApplicationSettingInTypeEnum = 'customApplicationSetting';
4140
4089
  export interface JsonApiCustomApplicationSettingInDocument {
@@ -4152,17 +4101,10 @@ export interface JsonApiCustomApplicationSettingOut {
4152
4101
  * API identifier of an object
4153
4102
  */
4154
4103
  'id': string;
4155
- 'meta'?: JsonApiFactOutMeta;
4156
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4104
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4105
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4157
4106
  }
4158
4107
  export type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
4159
- export interface JsonApiCustomApplicationSettingOutAttributes {
4160
- 'applicationName': string;
4161
- /**
4162
- * Free-form JSON content. Maximum supported length is 250000 characters.
4163
- */
4164
- 'content': object;
4165
- }
4166
4108
  export interface JsonApiCustomApplicationSettingOutDocument {
4167
4109
  'data': JsonApiCustomApplicationSettingOut;
4168
4110
  'links'?: ObjectLinks;
@@ -4173,7 +4115,7 @@ export interface JsonApiCustomApplicationSettingOutDocument {
4173
4115
  export interface JsonApiCustomApplicationSettingOutList {
4174
4116
  'data': Array<JsonApiCustomApplicationSettingOutWithLinks>;
4175
4117
  'links'?: ListLinks;
4176
- 'meta'?: JsonApiApiTokenOutListMeta;
4118
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4177
4119
  }
4178
4120
  export interface JsonApiCustomApplicationSettingOutWithLinks {
4179
4121
  /**
@@ -4184,8 +4126,8 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
4184
4126
  * API identifier of an object
4185
4127
  */
4186
4128
  'id': string;
4187
- 'meta'?: JsonApiFactOutMeta;
4188
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4129
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4130
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4189
4131
  'links'?: ObjectLinks;
4190
4132
  }
4191
4133
  export type JsonApiCustomApplicationSettingOutWithLinksTypeEnum = 'customApplicationSetting';
@@ -4226,9 +4168,16 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
4226
4168
  * API identifier of an object
4227
4169
  */
4228
4170
  'id'?: string;
4229
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
4171
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
4230
4172
  }
4231
4173
  export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = 'customApplicationSetting';
4174
+ export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
4175
+ 'applicationName': string;
4176
+ /**
4177
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4178
+ */
4179
+ 'content': object;
4180
+ }
4232
4181
  export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
4233
4182
  'data': JsonApiCustomApplicationSettingPostOptionalId;
4234
4183
  }
@@ -4244,9 +4193,13 @@ export interface JsonApiCustomGeoCollectionIn {
4244
4193
  * API identifier of an object
4245
4194
  */
4246
4195
  'id': string;
4247
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4196
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4248
4197
  }
4249
4198
  export type JsonApiCustomGeoCollectionInTypeEnum = 'customGeoCollection';
4199
+ export interface JsonApiCustomGeoCollectionInAttributes {
4200
+ 'name'?: string | null;
4201
+ 'description'?: string | null;
4202
+ }
4250
4203
  export interface JsonApiCustomGeoCollectionInDocument {
4251
4204
  'data': JsonApiCustomGeoCollectionIn;
4252
4205
  }
@@ -4262,13 +4215,9 @@ export interface JsonApiCustomGeoCollectionOut {
4262
4215
  * API identifier of an object
4263
4216
  */
4264
4217
  'id': string;
4265
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4218
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4266
4219
  }
4267
4220
  export type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
4268
- export interface JsonApiCustomGeoCollectionOutAttributes {
4269
- 'name'?: string | null;
4270
- 'description'?: string | null;
4271
- }
4272
4221
  export interface JsonApiCustomGeoCollectionOutDocument {
4273
4222
  'data': JsonApiCustomGeoCollectionOut;
4274
4223
  'links'?: ObjectLinks;
@@ -4279,7 +4228,10 @@ export interface JsonApiCustomGeoCollectionOutDocument {
4279
4228
  export interface JsonApiCustomGeoCollectionOutList {
4280
4229
  'data': Array<JsonApiCustomGeoCollectionOutWithLinks>;
4281
4230
  'links'?: ListLinks;
4282
- 'meta'?: JsonApiApiTokenOutListMeta;
4231
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4232
+ }
4233
+ export interface JsonApiCustomGeoCollectionOutListMeta {
4234
+ 'page'?: PageMetadata;
4283
4235
  }
4284
4236
  export interface JsonApiCustomGeoCollectionOutWithLinks {
4285
4237
  /**
@@ -4290,7 +4242,7 @@ export interface JsonApiCustomGeoCollectionOutWithLinks {
4290
4242
  * API identifier of an object
4291
4243
  */
4292
4244
  'id': string;
4293
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4245
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4294
4246
  'links'?: ObjectLinks;
4295
4247
  }
4296
4248
  export type JsonApiCustomGeoCollectionOutWithLinksTypeEnum = 'customGeoCollection';
@@ -4306,7 +4258,7 @@ export interface JsonApiCustomGeoCollectionPatch {
4306
4258
  * API identifier of an object
4307
4259
  */
4308
4260
  'id': string;
4309
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
4261
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
4310
4262
  }
4311
4263
  export type JsonApiCustomGeoCollectionPatchTypeEnum = 'customGeoCollection';
4312
4264
  export interface JsonApiCustomGeoCollectionPatchDocument {
@@ -4350,7 +4302,7 @@ export interface JsonApiDashboardPluginOut {
4350
4302
  * API identifier of an object
4351
4303
  */
4352
4304
  'id': string;
4353
- 'meta'?: JsonApiFactOutMeta;
4305
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4354
4306
  'attributes'?: JsonApiDashboardPluginOutAttributes;
4355
4307
  'relationships'?: JsonApiDashboardPluginOutRelationships;
4356
4308
  }
@@ -4387,15 +4339,15 @@ export interface JsonApiDashboardPluginOutDocument {
4387
4339
  export interface JsonApiDashboardPluginOutList {
4388
4340
  'data': Array<JsonApiDashboardPluginOutWithLinks>;
4389
4341
  'links'?: ListLinks;
4390
- 'meta'?: JsonApiApiTokenOutListMeta;
4342
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4391
4343
  /**
4392
4344
  * Included resources
4393
4345
  */
4394
4346
  'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
4395
4347
  }
4396
4348
  export interface JsonApiDashboardPluginOutRelationships {
4397
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
4398
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
4349
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
4350
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
4399
4351
  }
4400
4352
  export interface JsonApiDashboardPluginOutWithLinks {
4401
4353
  /**
@@ -4406,7 +4358,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
4406
4358
  * API identifier of an object
4407
4359
  */
4408
4360
  'id': string;
4409
- 'meta'?: JsonApiFactOutMeta;
4361
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4410
4362
  'attributes'?: JsonApiDashboardPluginOutAttributes;
4411
4363
  'relationships'?: JsonApiDashboardPluginOutRelationships;
4412
4364
  'links'?: ObjectLinks;
@@ -4490,7 +4442,7 @@ export interface JsonApiDataSourceIdentifierOutDocument {
4490
4442
  export interface JsonApiDataSourceIdentifierOutList {
4491
4443
  'data': Array<JsonApiDataSourceIdentifierOutWithLinks>;
4492
4444
  'links'?: ListLinks;
4493
- 'meta'?: JsonApiApiTokenOutListMeta;
4445
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4494
4446
  }
4495
4447
  export interface JsonApiDataSourceIdentifierOutWithLinks {
4496
4448
  /**
@@ -4663,7 +4615,7 @@ export interface JsonApiDataSourceOutDocument {
4663
4615
  export interface JsonApiDataSourceOutList {
4664
4616
  'data': Array<JsonApiDataSourceOutWithLinks>;
4665
4617
  'links'?: ListLinks;
4666
- 'meta'?: JsonApiApiTokenOutListMeta;
4618
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4667
4619
  }
4668
4620
  export interface JsonApiDataSourceOutMeta {
4669
4621
  /**
@@ -4784,7 +4736,7 @@ export interface JsonApiDatasetOut {
4784
4736
  * API identifier of an object
4785
4737
  */
4786
4738
  'id': string;
4787
- 'meta'?: JsonApiFactOutMeta;
4739
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4788
4740
  'attributes': JsonApiDatasetOutAttributes;
4789
4741
  'relationships'?: JsonApiDatasetOutRelationships;
4790
4742
  }
@@ -4857,17 +4809,17 @@ export type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLinks | Json
4857
4809
  export interface JsonApiDatasetOutList {
4858
4810
  'data': Array<JsonApiDatasetOutWithLinks>;
4859
4811
  'links'?: ListLinks;
4860
- 'meta'?: JsonApiApiTokenOutListMeta;
4812
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4861
4813
  /**
4862
4814
  * Included resources
4863
4815
  */
4864
4816
  'included'?: Array<JsonApiDatasetOutIncludes>;
4865
4817
  }
4866
4818
  export interface JsonApiDatasetOutRelationships {
4867
- 'attributes'?: JsonApiMetricOutRelationshipsAttributes;
4868
- 'facts'?: JsonApiMetricOutRelationshipsFacts;
4819
+ 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
4820
+ 'facts'?: JsonApiDatasetOutRelationshipsFacts;
4869
4821
  'aggregatedFacts'?: JsonApiDatasetOutRelationshipsAggregatedFacts;
4870
- 'references'?: JsonApiMetricOutRelationshipsDatasets;
4822
+ 'references'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
4871
4823
  'workspaceDataFilters'?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
4872
4824
  }
4873
4825
  export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
@@ -4876,6 +4828,18 @@ export interface JsonApiDatasetOutRelationshipsAggregatedFacts {
4876
4828
  */
4877
4829
  'data': Array<JsonApiAggregatedFactLinkage>;
4878
4830
  }
4831
+ export interface JsonApiDatasetOutRelationshipsAttributes {
4832
+ /**
4833
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4834
+ */
4835
+ 'data': Array<JsonApiAttributeLinkage>;
4836
+ }
4837
+ export interface JsonApiDatasetOutRelationshipsFacts {
4838
+ /**
4839
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
4840
+ */
4841
+ 'data': Array<JsonApiFactLinkage>;
4842
+ }
4879
4843
  export interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
4880
4844
  /**
4881
4845
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -4891,7 +4855,7 @@ export interface JsonApiDatasetOutWithLinks {
4891
4855
  * API identifier of an object
4892
4856
  */
4893
4857
  'id': string;
4894
- 'meta'?: JsonApiFactOutMeta;
4858
+ 'meta'?: JsonApiExportDefinitionOutMeta;
4895
4859
  'attributes': JsonApiDatasetOutAttributes;
4896
4860
  'relationships'?: JsonApiDatasetOutRelationships;
4897
4861
  'links'?: ObjectLinks;
@@ -4909,7 +4873,7 @@ export interface JsonApiDatasetPatch {
4909
4873
  * API identifier of an object
4910
4874
  */
4911
4875
  'id': string;
4912
- 'attributes'?: JsonApiLabelPatchAttributes;
4876
+ 'attributes'?: JsonApiAttributePatchAttributes;
4913
4877
  }
4914
4878
  export type JsonApiDatasetPatchTypeEnum = 'dataset';
4915
4879
  export interface JsonApiDatasetPatchDocument {
@@ -4944,7 +4908,7 @@ export interface JsonApiEntitlementOutDocument {
4944
4908
  export interface JsonApiEntitlementOutList {
4945
4909
  'data': Array<JsonApiEntitlementOutWithLinks>;
4946
4910
  'links'?: ListLinks;
4947
- 'meta'?: JsonApiApiTokenOutListMeta;
4911
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
4948
4912
  }
4949
4913
  export interface JsonApiEntitlementOutWithLinks {
4950
4914
  /**
@@ -4971,8 +4935,8 @@ export interface JsonApiExportDefinitionIn {
4971
4935
  * API identifier of an object
4972
4936
  */
4973
4937
  'id': string;
4974
- 'attributes'?: JsonApiExportDefinitionPatchAttributes;
4975
- 'relationships'?: JsonApiExportDefinitionPatchRelationships;
4938
+ 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
4939
+ 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
4976
4940
  }
4977
4941
  export type JsonApiExportDefinitionInTypeEnum = 'exportDefinition';
4978
4942
  export interface JsonApiExportDefinitionInDocument {
@@ -4998,7 +4962,7 @@ export interface JsonApiExportDefinitionOut {
4998
4962
  * API identifier of an object
4999
4963
  */
5000
4964
  'id': string;
5001
- 'meta'?: JsonApiFactOutMeta;
4965
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5002
4966
  'attributes'?: JsonApiExportDefinitionOutAttributes;
5003
4967
  'relationships'?: JsonApiExportDefinitionOutRelationships;
5004
4968
  }
@@ -5041,21 +5005,24 @@ export type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashboardOutWi
5041
5005
  export interface JsonApiExportDefinitionOutList {
5042
5006
  'data': Array<JsonApiExportDefinitionOutWithLinks>;
5043
5007
  'links'?: ListLinks;
5044
- 'meta'?: JsonApiApiTokenOutListMeta;
5008
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5045
5009
  /**
5046
5010
  * Included resources
5047
5011
  */
5048
5012
  'included'?: Array<JsonApiExportDefinitionOutIncludes>;
5049
5013
  }
5014
+ export interface JsonApiExportDefinitionOutMeta {
5015
+ 'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
5016
+ }
5050
5017
  export interface JsonApiExportDefinitionOutRelationships {
5051
5018
  'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5052
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
5053
- 'automation'?: JsonApiExportDefinitionOutRelationshipsAutomation;
5054
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
5055
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
5019
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5020
+ 'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
5021
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
5022
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
5056
5023
  }
5057
- export interface JsonApiExportDefinitionOutRelationshipsAutomation {
5058
- 'data': JsonApiAutomationLinkage | null;
5024
+ export interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
5025
+ 'data': JsonApiAnalyticalDashboardLinkage | null;
5059
5026
  }
5060
5027
  export interface JsonApiExportDefinitionOutRelationshipsVisualizationObject {
5061
5028
  'data': JsonApiVisualizationObjectLinkage | null;
@@ -5069,7 +5036,7 @@ export interface JsonApiExportDefinitionOutWithLinks {
5069
5036
  * API identifier of an object
5070
5037
  */
5071
5038
  'id': string;
5072
- 'meta'?: JsonApiFactOutMeta;
5039
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5073
5040
  'attributes'?: JsonApiExportDefinitionOutAttributes;
5074
5041
  'relationships'?: JsonApiExportDefinitionOutRelationships;
5075
5042
  'links'?: ObjectLinks;
@@ -5087,24 +5054,13 @@ export interface JsonApiExportDefinitionPatch {
5087
5054
  * API identifier of an object
5088
5055
  */
5089
5056
  'id': string;
5090
- 'attributes'?: JsonApiExportDefinitionPatchAttributes;
5091
- 'relationships'?: JsonApiExportDefinitionPatchRelationships;
5057
+ 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
5058
+ 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
5092
5059
  }
5093
5060
  export type JsonApiExportDefinitionPatchTypeEnum = 'exportDefinition';
5094
- export interface JsonApiExportDefinitionPatchAttributes {
5095
- 'title'?: string;
5096
- 'description'?: string;
5097
- 'tags'?: Array<string>;
5098
- 'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
5099
- 'areRelationsValid'?: boolean;
5100
- }
5101
5061
  export interface JsonApiExportDefinitionPatchDocument {
5102
5062
  'data': JsonApiExportDefinitionPatch;
5103
5063
  }
5104
- export interface JsonApiExportDefinitionPatchRelationships {
5105
- 'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5106
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
5107
- }
5108
5064
  /**
5109
5065
  * JSON:API representation of exportDefinition entity.
5110
5066
  */
@@ -5117,13 +5073,24 @@ export interface JsonApiExportDefinitionPostOptionalId {
5117
5073
  * API identifier of an object
5118
5074
  */
5119
5075
  'id'?: string;
5120
- 'attributes'?: JsonApiExportDefinitionPatchAttributes;
5121
- 'relationships'?: JsonApiExportDefinitionPatchRelationships;
5076
+ 'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
5077
+ 'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
5122
5078
  }
5123
5079
  export type JsonApiExportDefinitionPostOptionalIdTypeEnum = 'exportDefinition';
5080
+ export interface JsonApiExportDefinitionPostOptionalIdAttributes {
5081
+ 'title'?: string;
5082
+ 'description'?: string;
5083
+ 'tags'?: Array<string>;
5084
+ 'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
5085
+ 'areRelationsValid'?: boolean;
5086
+ }
5124
5087
  export interface JsonApiExportDefinitionPostOptionalIdDocument {
5125
5088
  'data': JsonApiExportDefinitionPostOptionalId;
5126
5089
  }
5090
+ export interface JsonApiExportDefinitionPostOptionalIdRelationships {
5091
+ 'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
5092
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5093
+ }
5127
5094
  /**
5128
5095
  * JSON:API representation of exportTemplate entity.
5129
5096
  */
@@ -5200,7 +5167,7 @@ export interface JsonApiExportTemplateOutDocument {
5200
5167
  export interface JsonApiExportTemplateOutList {
5201
5168
  'data': Array<JsonApiExportTemplateOutWithLinks>;
5202
5169
  'links'?: ListLinks;
5203
- 'meta'?: JsonApiApiTokenOutListMeta;
5170
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5204
5171
  }
5205
5172
  export interface JsonApiExportTemplateOutWithLinks {
5206
5173
  /**
@@ -5279,7 +5246,7 @@ export interface JsonApiFactOut {
5279
5246
  * API identifier of an object
5280
5247
  */
5281
5248
  'id': string;
5282
- 'meta'?: JsonApiFactOutMeta;
5249
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5283
5250
  'attributes'?: JsonApiFactOutAttributes;
5284
5251
  'relationships'?: JsonApiFactOutRelationships;
5285
5252
  }
@@ -5310,31 +5277,14 @@ export interface JsonApiFactOutDocument {
5310
5277
  export interface JsonApiFactOutList {
5311
5278
  'data': Array<JsonApiFactOutWithLinks>;
5312
5279
  'links'?: ListLinks;
5313
- 'meta'?: JsonApiApiTokenOutListMeta;
5280
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5314
5281
  /**
5315
5282
  * Included resources
5316
5283
  */
5317
5284
  'included'?: Array<JsonApiDatasetOutWithLinks>;
5318
5285
  }
5319
- export interface JsonApiFactOutMeta {
5320
- 'origin'?: JsonApiFactOutMetaOrigin;
5321
- }
5322
- export interface JsonApiFactOutMetaOrigin {
5323
- /**
5324
- * defines type of the origin of the entity
5325
- */
5326
- 'originType': JsonApiFactOutMetaOriginOriginTypeEnum;
5327
- /**
5328
- * defines id of the workspace where the entity comes from
5329
- */
5330
- 'originId': string;
5331
- }
5332
- export type JsonApiFactOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
5333
5286
  export interface JsonApiFactOutRelationships {
5334
- 'dataset'?: JsonApiFactOutRelationshipsDataset;
5335
- }
5336
- export interface JsonApiFactOutRelationshipsDataset {
5337
- 'data': JsonApiDatasetLinkage | null;
5287
+ 'dataset'?: JsonApiAttributeOutRelationshipsDataset;
5338
5288
  }
5339
5289
  export interface JsonApiFactOutWithLinks {
5340
5290
  /**
@@ -5345,7 +5295,7 @@ export interface JsonApiFactOutWithLinks {
5345
5295
  * API identifier of an object
5346
5296
  */
5347
5297
  'id': string;
5348
- 'meta'?: JsonApiFactOutMeta;
5298
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5349
5299
  'attributes'?: JsonApiFactOutAttributes;
5350
5300
  'relationships'?: JsonApiFactOutRelationships;
5351
5301
  'links'?: ObjectLinks;
@@ -5363,7 +5313,7 @@ export interface JsonApiFactPatch {
5363
5313
  * API identifier of an object
5364
5314
  */
5365
5315
  'id': string;
5366
- 'attributes'?: JsonApiLabelPatchAttributes;
5316
+ 'attributes'?: JsonApiAttributePatchAttributes;
5367
5317
  }
5368
5318
  export type JsonApiFactPatchTypeEnum = 'fact';
5369
5319
  export interface JsonApiFactPatchDocument {
@@ -5407,7 +5357,7 @@ export interface JsonApiFilterContextOut {
5407
5357
  * API identifier of an object
5408
5358
  */
5409
5359
  'id': string;
5410
- 'meta'?: JsonApiFactOutMeta;
5360
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5411
5361
  'attributes': JsonApiFilterContextOutAttributes;
5412
5362
  'relationships'?: JsonApiFilterContextOutRelationships;
5413
5363
  }
@@ -5440,16 +5390,16 @@ export type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLinks | Jso
5440
5390
  export interface JsonApiFilterContextOutList {
5441
5391
  'data': Array<JsonApiFilterContextOutWithLinks>;
5442
5392
  'links'?: ListLinks;
5443
- 'meta'?: JsonApiApiTokenOutListMeta;
5393
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5444
5394
  /**
5445
5395
  * Included resources
5446
5396
  */
5447
5397
  'included'?: Array<JsonApiFilterContextOutIncludes>;
5448
5398
  }
5449
5399
  export interface JsonApiFilterContextOutRelationships {
5450
- 'attributes'?: JsonApiMetricOutRelationshipsAttributes;
5451
- 'datasets'?: JsonApiMetricOutRelationshipsDatasets;
5452
- 'labels'?: JsonApiAttributeOutRelationshipsLabels;
5400
+ 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
5401
+ 'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
5402
+ 'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
5453
5403
  }
5454
5404
  export interface JsonApiFilterContextOutWithLinks {
5455
5405
  /**
@@ -5460,7 +5410,7 @@ export interface JsonApiFilterContextOutWithLinks {
5460
5410
  * API identifier of an object
5461
5411
  */
5462
5412
  'id': string;
5463
- 'meta'?: JsonApiFactOutMeta;
5413
+ 'meta'?: JsonApiExportDefinitionOutMeta;
5464
5414
  'attributes': JsonApiFilterContextOutAttributes;
5465
5415
  'relationships'?: JsonApiFilterContextOutRelationships;
5466
5416
  'links'?: ObjectLinks;
@@ -5524,13 +5474,31 @@ export interface JsonApiFilterViewIn {
5524
5474
  * API identifier of an object
5525
5475
  */
5526
5476
  'id': string;
5527
- 'attributes': JsonApiFilterViewOutAttributes;
5528
- 'relationships'?: JsonApiFilterViewOutRelationships;
5477
+ 'attributes': JsonApiFilterViewInAttributes;
5478
+ 'relationships'?: JsonApiFilterViewInRelationships;
5529
5479
  }
5530
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
+ }
5531
5495
  export interface JsonApiFilterViewInDocument {
5532
5496
  'data': JsonApiFilterViewIn;
5533
5497
  }
5498
+ export interface JsonApiFilterViewInRelationships {
5499
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5500
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
5501
+ }
5534
5502
  /**
5535
5503
  * JSON:API representation of filterView entity.
5536
5504
  */
@@ -5543,24 +5511,10 @@ export interface JsonApiFilterViewOut {
5543
5511
  * API identifier of an object
5544
5512
  */
5545
5513
  'id': string;
5546
- 'attributes': JsonApiFilterViewOutAttributes;
5547
- 'relationships'?: JsonApiFilterViewOutRelationships;
5514
+ 'attributes': JsonApiFilterViewInAttributes;
5515
+ 'relationships'?: JsonApiFilterViewInRelationships;
5548
5516
  }
5549
5517
  export type JsonApiFilterViewOutTypeEnum = 'filterView';
5550
- export interface JsonApiFilterViewOutAttributes {
5551
- 'title': string;
5552
- 'description'?: string;
5553
- 'tags'?: Array<string>;
5554
- 'areRelationsValid'?: boolean;
5555
- /**
5556
- * Indicator whether the filter view should by applied by default.
5557
- */
5558
- 'isDefault'?: boolean;
5559
- /**
5560
- * The respective filter context.
5561
- */
5562
- 'content': object;
5563
- }
5564
5518
  export interface JsonApiFilterViewOutDocument {
5565
5519
  'data': JsonApiFilterViewOut;
5566
5520
  'links'?: ObjectLinks;
@@ -5579,22 +5533,12 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
5579
5533
  export interface JsonApiFilterViewOutList {
5580
5534
  'data': Array<JsonApiFilterViewOutWithLinks>;
5581
5535
  'links'?: ListLinks;
5582
- 'meta'?: JsonApiApiTokenOutListMeta;
5536
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5583
5537
  /**
5584
5538
  * Included resources
5585
5539
  */
5586
5540
  'included'?: Array<JsonApiFilterViewOutIncludes>;
5587
5541
  }
5588
- export interface JsonApiFilterViewOutRelationships {
5589
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
5590
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
5591
- }
5592
- export interface JsonApiFilterViewOutRelationshipsAnalyticalDashboard {
5593
- 'data': JsonApiAnalyticalDashboardLinkage | null;
5594
- }
5595
- export interface JsonApiFilterViewOutRelationshipsUser {
5596
- 'data': JsonApiUserLinkage | null;
5597
- }
5598
5542
  export interface JsonApiFilterViewOutWithLinks {
5599
5543
  /**
5600
5544
  * Object type
@@ -5604,8 +5548,8 @@ export interface JsonApiFilterViewOutWithLinks {
5604
5548
  * API identifier of an object
5605
5549
  */
5606
5550
  'id': string;
5607
- 'attributes': JsonApiFilterViewOutAttributes;
5608
- 'relationships'?: JsonApiFilterViewOutRelationships;
5551
+ 'attributes': JsonApiFilterViewInAttributes;
5552
+ 'relationships'?: JsonApiFilterViewInRelationships;
5609
5553
  'links'?: ObjectLinks;
5610
5554
  }
5611
5555
  export type JsonApiFilterViewOutWithLinksTypeEnum = 'filterView';
@@ -5622,7 +5566,7 @@ export interface JsonApiFilterViewPatch {
5622
5566
  */
5623
5567
  'id': string;
5624
5568
  'attributes': JsonApiFilterViewPatchAttributes;
5625
- 'relationships'?: JsonApiFilterViewOutRelationships;
5569
+ 'relationships'?: JsonApiFilterViewInRelationships;
5626
5570
  }
5627
5571
  export type JsonApiFilterViewPatchTypeEnum = 'filterView';
5628
5572
  export interface JsonApiFilterViewPatchAttributes {
@@ -5654,9 +5598,60 @@ export interface JsonApiIdentityProviderIn {
5654
5598
  * API identifier of an object
5655
5599
  */
5656
5600
  'id': string;
5657
- 'attributes'?: JsonApiIdentityProviderPatchAttributes;
5601
+ 'attributes'?: JsonApiIdentityProviderInAttributes;
5658
5602
  }
5659
5603
  export type JsonApiIdentityProviderInTypeEnum = 'identityProvider';
5604
+ export interface JsonApiIdentityProviderInAttributes {
5605
+ /**
5606
+ * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
5607
+ */
5608
+ 'identifiers'?: Array<string>;
5609
+ /**
5610
+ * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
5611
+ */
5612
+ 'customClaimMapping'?: {
5613
+ [key: string]: string;
5614
+ };
5615
+ /**
5616
+ * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
5617
+ */
5618
+ 'samlMetadata'?: string;
5619
+ /**
5620
+ * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
5621
+ */
5622
+ 'oauthClientId'?: string;
5623
+ /**
5624
+ * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
5625
+ */
5626
+ 'oauthClientSecret'?: string;
5627
+ /**
5628
+ * The location of your OIDC provider. This field is mandatory for OIDC IdP.
5629
+ */
5630
+ 'oauthIssuerLocation'?: string;
5631
+ /**
5632
+ * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
5633
+ */
5634
+ 'oauthIssuerId'?: string;
5635
+ /**
5636
+ * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
5637
+ */
5638
+ 'oauthSubjectIdClaim'?: string;
5639
+ /**
5640
+ * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
5641
+ */
5642
+ 'oauthCustomAuthAttributes'?: {
5643
+ [key: string]: string;
5644
+ };
5645
+ /**
5646
+ * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
5647
+ */
5648
+ 'oauthCustomScopes'?: Array<string> | null;
5649
+ /**
5650
+ * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
5651
+ */
5652
+ 'idpType'?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
5653
+ }
5654
+ export type JsonApiIdentityProviderInAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
5660
5655
  export interface JsonApiIdentityProviderInDocument {
5661
5656
  'data': JsonApiIdentityProviderIn;
5662
5657
  }
@@ -5736,7 +5731,7 @@ export interface JsonApiIdentityProviderOutDocument {
5736
5731
  export interface JsonApiIdentityProviderOutList {
5737
5732
  'data': Array<JsonApiIdentityProviderOutWithLinks>;
5738
5733
  'links'?: ListLinks;
5739
- 'meta'?: JsonApiApiTokenOutListMeta;
5734
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5740
5735
  }
5741
5736
  export interface JsonApiIdentityProviderOutWithLinks {
5742
5737
  /**
@@ -5763,60 +5758,9 @@ export interface JsonApiIdentityProviderPatch {
5763
5758
  * API identifier of an object
5764
5759
  */
5765
5760
  'id': string;
5766
- 'attributes'?: JsonApiIdentityProviderPatchAttributes;
5761
+ 'attributes'?: JsonApiIdentityProviderInAttributes;
5767
5762
  }
5768
5763
  export type JsonApiIdentityProviderPatchTypeEnum = 'identityProvider';
5769
- export interface JsonApiIdentityProviderPatchAttributes {
5770
- /**
5771
- * List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
5772
- */
5773
- 'identifiers'?: Array<string>;
5774
- /**
5775
- * Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
5776
- */
5777
- 'customClaimMapping'?: {
5778
- [key: string]: string;
5779
- };
5780
- /**
5781
- * Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
5782
- */
5783
- 'samlMetadata'?: string;
5784
- /**
5785
- * The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
5786
- */
5787
- 'oauthClientId'?: string;
5788
- /**
5789
- * The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
5790
- */
5791
- 'oauthClientSecret'?: string;
5792
- /**
5793
- * The location of your OIDC provider. This field is mandatory for OIDC IdP.
5794
- */
5795
- 'oauthIssuerLocation'?: string;
5796
- /**
5797
- * Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
5798
- */
5799
- 'oauthIssuerId'?: string;
5800
- /**
5801
- * Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
5802
- */
5803
- 'oauthSubjectIdClaim'?: string;
5804
- /**
5805
- * Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
5806
- */
5807
- 'oauthCustomAuthAttributes'?: {
5808
- [key: string]: string;
5809
- };
5810
- /**
5811
- * List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
5812
- */
5813
- 'oauthCustomScopes'?: Array<string> | null;
5814
- /**
5815
- * Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
5816
- */
5817
- 'idpType'?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
5818
- }
5819
- export type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
5820
5764
  export interface JsonApiIdentityProviderPatchDocument {
5821
5765
  'data': JsonApiIdentityProviderPatch;
5822
5766
  }
@@ -5832,9 +5776,12 @@ export interface JsonApiJwkIn {
5832
5776
  * API identifier of an object
5833
5777
  */
5834
5778
  'id': string;
5835
- 'attributes'?: JsonApiJwkOutAttributes;
5779
+ 'attributes'?: JsonApiJwkInAttributes;
5836
5780
  }
5837
5781
  export type JsonApiJwkInTypeEnum = 'jwk';
5782
+ export interface JsonApiJwkInAttributes {
5783
+ 'content'?: RsaSpecification;
5784
+ }
5838
5785
  export interface JsonApiJwkInDocument {
5839
5786
  'data': JsonApiJwkIn;
5840
5787
  }
@@ -5850,12 +5797,9 @@ export interface JsonApiJwkOut {
5850
5797
  * API identifier of an object
5851
5798
  */
5852
5799
  'id': string;
5853
- 'attributes'?: JsonApiJwkOutAttributes;
5800
+ 'attributes'?: JsonApiJwkInAttributes;
5854
5801
  }
5855
5802
  export type JsonApiJwkOutTypeEnum = 'jwk';
5856
- export interface JsonApiJwkOutAttributes {
5857
- 'content'?: RsaSpecification;
5858
- }
5859
5803
  export interface JsonApiJwkOutDocument {
5860
5804
  'data': JsonApiJwkOut;
5861
5805
  'links'?: ObjectLinks;
@@ -5866,7 +5810,7 @@ export interface JsonApiJwkOutDocument {
5866
5810
  export interface JsonApiJwkOutList {
5867
5811
  'data': Array<JsonApiJwkOutWithLinks>;
5868
5812
  'links'?: ListLinks;
5869
- 'meta'?: JsonApiApiTokenOutListMeta;
5813
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
5870
5814
  }
5871
5815
  export interface JsonApiJwkOutWithLinks {
5872
5816
  /**
@@ -5877,7 +5821,7 @@ export interface JsonApiJwkOutWithLinks {
5877
5821
  * API identifier of an object
5878
5822
  */
5879
5823
  'id': string;
5880
- 'attributes'?: JsonApiJwkOutAttributes;
5824
+ 'attributes'?: JsonApiJwkInAttributes;
5881
5825
  'links'?: ObjectLinks;
5882
5826
  }
5883
5827
  export type JsonApiJwkOutWithLinksTypeEnum = 'jwk';
@@ -5893,7 +5837,7 @@ export interface JsonApiJwkPatch {
5893
5837
  * API identifier of an object
5894
5838
  */
5895
5839
  'id': string;
5896
- 'attributes'?: JsonApiJwkOutAttributes;
5840
+ 'attributes'?: JsonApiJwkInAttributes;
5897
5841
  }
5898
5842
  export type JsonApiJwkPatchTypeEnum = 'jwk';
5899
5843
  export interface JsonApiJwkPatchDocument {
@@ -5911,83 +5855,13 @@ export interface JsonApiKnowledgeRecommendationIn {
5911
5855
  * API identifier of an object
5912
5856
  */
5913
5857
  'id': string;
5914
- 'attributes': JsonApiKnowledgeRecommendationInAttributes;
5915
- 'relationships': JsonApiKnowledgeRecommendationInRelationships;
5858
+ 'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
5859
+ 'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
5916
5860
  }
5917
5861
  export type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
5918
- export interface JsonApiKnowledgeRecommendationInAttributes {
5919
- /**
5920
- * Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
5921
- */
5922
- 'title': string;
5923
- /**
5924
- * Description of the recommendation
5925
- */
5926
- 'description'?: string;
5927
- 'tags'?: Array<string>;
5928
- 'areRelationsValid'?: boolean;
5929
- /**
5930
- * Human-readable title of the metric (denormalized for display)
5931
- */
5932
- 'metricTitle'?: string;
5933
- /**
5934
- * Direction of the metric change
5935
- */
5936
- 'direction': JsonApiKnowledgeRecommendationInAttributesDirectionEnum;
5937
- /**
5938
- * Time period for comparison
5939
- */
5940
- 'comparisonType': JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum;
5941
- /**
5942
- * ID of the widget where the anomaly was detected
5943
- */
5944
- 'widgetId'?: string;
5945
- /**
5946
- * Name of the widget where the anomaly was detected
5947
- */
5948
- 'widgetName'?: string;
5949
- /**
5950
- * Confidence score (0.0 to 1.0)
5951
- */
5952
- 'confidence'?: any;
5953
- /**
5954
- * Structured recommendations data as JSON
5955
- */
5956
- 'recommendations'?: object;
5957
- /**
5958
- * Number of source documents used for generation
5959
- */
5960
- 'sourceCount'?: number;
5961
- /**
5962
- * Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
5963
- */
5964
- 'referencePeriod'?: string;
5965
- /**
5966
- * Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
5967
- */
5968
- 'analyzedPeriod'?: string;
5969
- /**
5970
- * Metric value in the reference period
5971
- */
5972
- 'referenceValue'?: any;
5973
- /**
5974
- * Metric value in the analyzed period (the observed value that triggered the anomaly)
5975
- */
5976
- 'analyzedValue'?: any;
5977
- /**
5978
- * Human-readable title of the analytical dashboard (denormalized for display)
5979
- */
5980
- 'analyticalDashboardTitle'?: string;
5981
- }
5982
- export type JsonApiKnowledgeRecommendationInAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
5983
- export type JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
5984
5862
  export interface JsonApiKnowledgeRecommendationInDocument {
5985
5863
  'data': JsonApiKnowledgeRecommendationIn;
5986
5864
  }
5987
- export interface JsonApiKnowledgeRecommendationInRelationships {
5988
- 'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
5989
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
5990
- }
5991
5865
  /**
5992
5866
  * JSON:API representation of knowledgeRecommendation entity.
5993
5867
  */
@@ -6000,7 +5874,7 @@ export interface JsonApiKnowledgeRecommendationOut {
6000
5874
  * API identifier of an object
6001
5875
  */
6002
5876
  'id': string;
6003
- 'meta'?: JsonApiFactOutMeta;
5877
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6004
5878
  'attributes': JsonApiKnowledgeRecommendationOutAttributes;
6005
5879
  'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
6006
5880
  }
@@ -6090,7 +5964,7 @@ export type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalyticalDashboa
6090
5964
  export interface JsonApiKnowledgeRecommendationOutList {
6091
5965
  'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
6092
5966
  'links'?: ListLinks;
6093
- 'meta'?: JsonApiApiTokenOutListMeta;
5967
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6094
5968
  /**
6095
5969
  * Included resources
6096
5970
  */
@@ -6098,7 +5972,7 @@ export interface JsonApiKnowledgeRecommendationOutList {
6098
5972
  }
6099
5973
  export interface JsonApiKnowledgeRecommendationOutRelationships {
6100
5974
  'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
6101
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
5975
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6102
5976
  }
6103
5977
  export interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
6104
5978
  'data': JsonApiMetricLinkage | null;
@@ -6112,7 +5986,7 @@ export interface JsonApiKnowledgeRecommendationOutWithLinks {
6112
5986
  * API identifier of an object
6113
5987
  */
6114
5988
  'id': string;
6115
- 'meta'?: JsonApiFactOutMeta;
5989
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6116
5990
  'attributes': JsonApiKnowledgeRecommendationOutAttributes;
6117
5991
  'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
6118
5992
  'links'?: ObjectLinks;
@@ -6215,13 +6089,83 @@ export interface JsonApiKnowledgeRecommendationPostOptionalId {
6215
6089
  * API identifier of an object
6216
6090
  */
6217
6091
  'id'?: string;
6218
- 'attributes': JsonApiKnowledgeRecommendationInAttributes;
6219
- 'relationships': JsonApiKnowledgeRecommendationInRelationships;
6092
+ 'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
6093
+ 'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
6220
6094
  }
6221
6095
  export type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
6096
+ export interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes {
6097
+ /**
6098
+ * Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
6099
+ */
6100
+ 'title': string;
6101
+ /**
6102
+ * Description of the recommendation
6103
+ */
6104
+ 'description'?: string;
6105
+ 'tags'?: Array<string>;
6106
+ 'areRelationsValid'?: boolean;
6107
+ /**
6108
+ * Human-readable title of the metric (denormalized for display)
6109
+ */
6110
+ 'metricTitle'?: string;
6111
+ /**
6112
+ * Direction of the metric change
6113
+ */
6114
+ 'direction': JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum;
6115
+ /**
6116
+ * Time period for comparison
6117
+ */
6118
+ 'comparisonType': JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum;
6119
+ /**
6120
+ * ID of the widget where the anomaly was detected
6121
+ */
6122
+ 'widgetId'?: string;
6123
+ /**
6124
+ * Name of the widget where the anomaly was detected
6125
+ */
6126
+ 'widgetName'?: string;
6127
+ /**
6128
+ * Confidence score (0.0 to 1.0)
6129
+ */
6130
+ 'confidence'?: any;
6131
+ /**
6132
+ * Structured recommendations data as JSON
6133
+ */
6134
+ 'recommendations'?: object;
6135
+ /**
6136
+ * Number of source documents used for generation
6137
+ */
6138
+ 'sourceCount'?: number;
6139
+ /**
6140
+ * Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
6141
+ */
6142
+ 'referencePeriod'?: string;
6143
+ /**
6144
+ * Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
6145
+ */
6146
+ 'analyzedPeriod'?: string;
6147
+ /**
6148
+ * Metric value in the reference period
6149
+ */
6150
+ 'referenceValue'?: any;
6151
+ /**
6152
+ * Metric value in the analyzed period (the observed value that triggered the anomaly)
6153
+ */
6154
+ 'analyzedValue'?: any;
6155
+ /**
6156
+ * Human-readable title of the analytical dashboard (denormalized for display)
6157
+ */
6158
+ 'analyticalDashboardTitle'?: string;
6159
+ }
6160
+ export type JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
6161
+ export type JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
6222
6162
  export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
6223
6163
  'data': JsonApiKnowledgeRecommendationPostOptionalId;
6224
6164
  }
6165
+ export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
6166
+ 'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
6167
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6168
+ }
6225
6169
  /**
6226
6170
  * The \\\"type\\\" and \\\"id\\\" to non-empty members.
6227
6171
  */
@@ -6242,7 +6186,7 @@ export interface JsonApiLabelOut {
6242
6186
  * API identifier of an object
6243
6187
  */
6244
6188
  'id': string;
6245
- 'meta'?: JsonApiFactOutMeta;
6189
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6246
6190
  'attributes'?: JsonApiLabelOutAttributes;
6247
6191
  'relationships'?: JsonApiLabelOutRelationships;
6248
6192
  }
@@ -6289,7 +6233,7 @@ export interface JsonApiLabelOutDocument {
6289
6233
  export interface JsonApiLabelOutList {
6290
6234
  'data': Array<JsonApiLabelOutWithLinks>;
6291
6235
  'links'?: ListLinks;
6292
- 'meta'?: JsonApiApiTokenOutListMeta;
6236
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6293
6237
  /**
6294
6238
  * Included resources
6295
6239
  */
@@ -6310,7 +6254,7 @@ export interface JsonApiLabelOutWithLinks {
6310
6254
  * API identifier of an object
6311
6255
  */
6312
6256
  'id': string;
6313
- 'meta'?: JsonApiFactOutMeta;
6257
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6314
6258
  'attributes'?: JsonApiLabelOutAttributes;
6315
6259
  'relationships'?: JsonApiLabelOutRelationships;
6316
6260
  'links'?: ObjectLinks;
@@ -6328,19 +6272,14 @@ export interface JsonApiLabelPatch {
6328
6272
  * API identifier of an object
6329
6273
  */
6330
6274
  'id': string;
6331
- 'attributes'?: JsonApiLabelPatchAttributes;
6275
+ 'attributes'?: JsonApiAttributePatchAttributes;
6332
6276
  }
6333
6277
  export type JsonApiLabelPatchTypeEnum = 'label';
6334
- export interface JsonApiLabelPatchAttributes {
6335
- 'title'?: string;
6336
- 'description'?: string;
6337
- 'tags'?: Array<string>;
6338
- }
6339
6278
  export interface JsonApiLabelPatchDocument {
6340
6279
  'data': JsonApiLabelPatch;
6341
6280
  }
6342
6281
  /**
6343
- * JSON:API representation of llmEndpoint entity.
6282
+ * Will be soon removed and replaced by LlmProvider.
6344
6283
  */
6345
6284
  export interface JsonApiLlmEndpointIn {
6346
6285
  /**
@@ -6361,6 +6300,7 @@ export interface JsonApiLlmEndpointInAttributes {
6361
6300
  'title': string;
6362
6301
  /**
6363
6302
  * LLM Provider.
6303
+ * @deprecated
6364
6304
  */
6365
6305
  'provider'?: JsonApiLlmEndpointInAttributesProviderEnum;
6366
6306
  /**
@@ -6382,10 +6322,13 @@ export interface JsonApiLlmEndpointInAttributes {
6382
6322
  }
6383
6323
  export type JsonApiLlmEndpointInAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
6384
6324
  export interface JsonApiLlmEndpointInDocument {
6325
+ /**
6326
+ * @deprecated
6327
+ */
6385
6328
  'data': JsonApiLlmEndpointIn;
6386
6329
  }
6387
6330
  /**
6388
- * JSON:API representation of llmEndpoint entity.
6331
+ * Will be soon removed and replaced by LlmProvider.
6389
6332
  */
6390
6333
  export interface JsonApiLlmEndpointOut {
6391
6334
  /**
@@ -6406,6 +6349,7 @@ export interface JsonApiLlmEndpointOutAttributes {
6406
6349
  'title': string;
6407
6350
  /**
6408
6351
  * LLM Provider.
6352
+ * @deprecated
6409
6353
  */
6410
6354
  'provider'?: JsonApiLlmEndpointOutAttributesProviderEnum;
6411
6355
  /**
@@ -6423,6 +6367,9 @@ export interface JsonApiLlmEndpointOutAttributes {
6423
6367
  }
6424
6368
  export type JsonApiLlmEndpointOutAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
6425
6369
  export interface JsonApiLlmEndpointOutDocument {
6370
+ /**
6371
+ * @deprecated
6372
+ */
6426
6373
  'data': JsonApiLlmEndpointOut;
6427
6374
  'links'?: ObjectLinks;
6428
6375
  }
@@ -6432,7 +6379,7 @@ export interface JsonApiLlmEndpointOutDocument {
6432
6379
  export interface JsonApiLlmEndpointOutList {
6433
6380
  'data': Array<JsonApiLlmEndpointOutWithLinks>;
6434
6381
  'links'?: ListLinks;
6435
- 'meta'?: JsonApiApiTokenOutListMeta;
6382
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6436
6383
  }
6437
6384
  export interface JsonApiLlmEndpointOutWithLinks {
6438
6385
  /**
@@ -6448,7 +6395,7 @@ export interface JsonApiLlmEndpointOutWithLinks {
6448
6395
  }
6449
6396
  export type JsonApiLlmEndpointOutWithLinksTypeEnum = 'llmEndpoint';
6450
6397
  /**
6451
- * JSON:API representation of patching llmEndpoint entity.
6398
+ * Will be soon removed and replaced by LlmProvider.
6452
6399
  */
6453
6400
  export interface JsonApiLlmEndpointPatch {
6454
6401
  /**
@@ -6469,6 +6416,7 @@ export interface JsonApiLlmEndpointPatchAttributes {
6469
6416
  'title'?: string;
6470
6417
  /**
6471
6418
  * LLM Provider.
6419
+ * @deprecated
6472
6420
  */
6473
6421
  'provider'?: JsonApiLlmEndpointPatchAttributesProviderEnum;
6474
6422
  /**
@@ -6490,6 +6438,9 @@ export interface JsonApiLlmEndpointPatchAttributes {
6490
6438
  }
6491
6439
  export type JsonApiLlmEndpointPatchAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
6492
6440
  export interface JsonApiLlmEndpointPatchDocument {
6441
+ /**
6442
+ * @deprecated
6443
+ */
6493
6444
  'data': JsonApiLlmEndpointPatch;
6494
6445
  }
6495
6446
  /**
@@ -6570,7 +6521,7 @@ export interface JsonApiLlmProviderOutDocument {
6570
6521
  export interface JsonApiLlmProviderOutList {
6571
6522
  'data': Array<JsonApiLlmProviderOutWithLinks>;
6572
6523
  'links'?: ListLinks;
6573
- 'meta'?: JsonApiApiTokenOutListMeta;
6524
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6574
6525
  }
6575
6526
  export interface JsonApiLlmProviderOutWithLinks {
6576
6527
  /**
@@ -6615,32 +6566,9 @@ export interface JsonApiMemoryItemIn {
6615
6566
  * API identifier of an object
6616
6567
  */
6617
6568
  'id': string;
6618
- 'attributes': JsonApiMemoryItemInAttributes;
6569
+ 'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
6619
6570
  }
6620
6571
  export type JsonApiMemoryItemInTypeEnum = 'memoryItem';
6621
- export interface JsonApiMemoryItemInAttributes {
6622
- 'title'?: string;
6623
- 'description'?: string;
6624
- 'tags'?: Array<string>;
6625
- 'areRelationsValid'?: boolean;
6626
- /**
6627
- * Strategy defining when the memory item should be applied
6628
- */
6629
- 'strategy': JsonApiMemoryItemInAttributesStrategyEnum;
6630
- /**
6631
- * The text that will be injected into the system prompt
6632
- */
6633
- 'instruction': string;
6634
- /**
6635
- * Set of unique strings used for semantic similarity filtering
6636
- */
6637
- 'keywords'?: Array<string>;
6638
- /**
6639
- * Whether memory item is disabled
6640
- */
6641
- 'isDisabled'?: boolean;
6642
- }
6643
- export type JsonApiMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
6644
6572
  export interface JsonApiMemoryItemInDocument {
6645
6573
  'data': JsonApiMemoryItemIn;
6646
6574
  }
@@ -6656,7 +6584,7 @@ export interface JsonApiMemoryItemOut {
6656
6584
  * API identifier of an object
6657
6585
  */
6658
6586
  'id': string;
6659
- 'meta'?: JsonApiFactOutMeta;
6587
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6660
6588
  'attributes': JsonApiMemoryItemOutAttributes;
6661
6589
  'relationships'?: JsonApiDashboardPluginOutRelationships;
6662
6590
  }
@@ -6706,7 +6634,7 @@ export interface JsonApiMemoryItemOutDocument {
6706
6634
  export interface JsonApiMemoryItemOutList {
6707
6635
  'data': Array<JsonApiMemoryItemOutWithLinks>;
6708
6636
  'links'?: ListLinks;
6709
- 'meta'?: JsonApiApiTokenOutListMeta;
6637
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6710
6638
  /**
6711
6639
  * Included resources
6712
6640
  */
@@ -6721,7 +6649,7 @@ export interface JsonApiMemoryItemOutWithLinks {
6721
6649
  * API identifier of an object
6722
6650
  */
6723
6651
  'id': string;
6724
- 'meta'?: JsonApiFactOutMeta;
6652
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6725
6653
  'attributes': JsonApiMemoryItemOutAttributes;
6726
6654
  'relationships'?: JsonApiDashboardPluginOutRelationships;
6727
6655
  'links'?: ObjectLinks;
@@ -6780,9 +6708,32 @@ export interface JsonApiMemoryItemPostOptionalId {
6780
6708
  * API identifier of an object
6781
6709
  */
6782
6710
  'id'?: string;
6783
- 'attributes': JsonApiMemoryItemInAttributes;
6711
+ 'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
6784
6712
  }
6785
6713
  export type JsonApiMemoryItemPostOptionalIdTypeEnum = 'memoryItem';
6714
+ export interface JsonApiMemoryItemPostOptionalIdAttributes {
6715
+ 'title'?: string;
6716
+ 'description'?: string;
6717
+ 'tags'?: Array<string>;
6718
+ 'areRelationsValid'?: boolean;
6719
+ /**
6720
+ * Strategy defining when the memory item should be applied
6721
+ */
6722
+ 'strategy': JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
6723
+ /**
6724
+ * The text that will be injected into the system prompt
6725
+ */
6726
+ 'instruction': string;
6727
+ /**
6728
+ * Set of unique strings used for semantic similarity filtering
6729
+ */
6730
+ 'keywords'?: Array<string>;
6731
+ /**
6732
+ * Whether memory item is disabled
6733
+ */
6734
+ 'isDisabled'?: boolean;
6735
+ }
6736
+ export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
6786
6737
  export interface JsonApiMemoryItemPostOptionalIdDocument {
6787
6738
  'data': JsonApiMemoryItemPostOptionalId;
6788
6739
  }
@@ -6824,7 +6775,7 @@ export interface JsonApiMetricOut {
6824
6775
  * API identifier of an object
6825
6776
  */
6826
6777
  'id': string;
6827
- 'meta'?: JsonApiFactOutMeta;
6778
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6828
6779
  'attributes': JsonApiMetricOutAttributes;
6829
6780
  'relationships'?: JsonApiMetricOutRelationships;
6830
6781
  }
@@ -6877,56 +6828,33 @@ export interface JsonApiMetricOutDocument {
6877
6828
  /**
6878
6829
  * Included resources
6879
6830
  */
6880
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
6831
+ 'included'?: Array<JsonApiMetricOutIncludes>;
6881
6832
  }
6833
+ /**
6834
+ * @type JsonApiMetricOutIncludes
6835
+ */
6836
+ export type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
6882
6837
  /**
6883
6838
  * A JSON:API document with a list of resources
6884
6839
  */
6885
6840
  export interface JsonApiMetricOutList {
6886
6841
  'data': Array<JsonApiMetricOutWithLinks>;
6887
6842
  'links'?: ListLinks;
6888
- 'meta'?: JsonApiApiTokenOutListMeta;
6843
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
6889
6844
  /**
6890
6845
  * Included resources
6891
6846
  */
6892
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
6847
+ 'included'?: Array<JsonApiMetricOutIncludes>;
6893
6848
  }
6894
6849
  export interface JsonApiMetricOutRelationships {
6895
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
6896
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
6897
- 'certifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
6898
- 'facts'?: JsonApiMetricOutRelationshipsFacts;
6899
- 'attributes'?: JsonApiMetricOutRelationshipsAttributes;
6900
- 'labels'?: JsonApiAttributeOutRelationshipsLabels;
6901
- 'metrics'?: JsonApiMetricOutRelationshipsMetrics;
6902
- 'datasets'?: JsonApiMetricOutRelationshipsDatasets;
6903
- }
6904
- export interface JsonApiMetricOutRelationshipsAttributes {
6905
- /**
6906
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6907
- */
6908
- 'data': Array<JsonApiAttributeLinkage>;
6909
- }
6910
- export interface JsonApiMetricOutRelationshipsCreatedBy {
6911
- 'data': JsonApiUserIdentifierLinkage | null;
6912
- }
6913
- export interface JsonApiMetricOutRelationshipsDatasets {
6914
- /**
6915
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6916
- */
6917
- 'data': Array<JsonApiDatasetLinkage>;
6918
- }
6919
- export interface JsonApiMetricOutRelationshipsFacts {
6920
- /**
6921
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6922
- */
6923
- 'data': Array<JsonApiFactLinkage>;
6924
- }
6925
- export interface JsonApiMetricOutRelationshipsMetrics {
6926
- /**
6927
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
6928
- */
6929
- 'data': Array<JsonApiMetricLinkage>;
6850
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
6851
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
6852
+ 'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
6853
+ 'facts'?: JsonApiDatasetOutRelationshipsFacts;
6854
+ 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
6855
+ 'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
6856
+ 'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
6857
+ 'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
6930
6858
  }
6931
6859
  export interface JsonApiMetricOutWithLinks {
6932
6860
  /**
@@ -6937,7 +6865,7 @@ export interface JsonApiMetricOutWithLinks {
6937
6865
  * API identifier of an object
6938
6866
  */
6939
6867
  'id': string;
6940
- 'meta'?: JsonApiFactOutMeta;
6868
+ 'meta'?: JsonApiExportDefinitionOutMeta;
6941
6869
  'attributes': JsonApiMetricOutAttributes;
6942
6870
  'relationships'?: JsonApiMetricOutRelationships;
6943
6871
  'links'?: ObjectLinks;
@@ -7033,7 +6961,7 @@ export interface JsonApiNotificationChannelIdentifierOutDocument {
7033
6961
  export interface JsonApiNotificationChannelIdentifierOutList {
7034
6962
  'data': Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
7035
6963
  'links'?: ListLinks;
7036
- 'meta'?: JsonApiApiTokenOutListMeta;
6964
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7037
6965
  }
7038
6966
  export interface JsonApiNotificationChannelIdentifierOutWithLinks {
7039
6967
  /**
@@ -7060,7 +6988,7 @@ export interface JsonApiNotificationChannelIn {
7060
6988
  * API identifier of an object
7061
6989
  */
7062
6990
  'id': string;
7063
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
6991
+ 'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
7064
6992
  }
7065
6993
  export type JsonApiNotificationChannelInTypeEnum = 'notificationChannel';
7066
6994
  export interface JsonApiNotificationChannelInDocument {
@@ -7134,7 +7062,7 @@ export interface JsonApiNotificationChannelOutDocument {
7134
7062
  export interface JsonApiNotificationChannelOutList {
7135
7063
  'data': Array<JsonApiNotificationChannelOutWithLinks>;
7136
7064
  'links'?: ListLinks;
7137
- 'meta'?: JsonApiApiTokenOutListMeta;
7065
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7138
7066
  }
7139
7067
  export interface JsonApiNotificationChannelOutWithLinks {
7140
7068
  /**
@@ -7161,10 +7089,28 @@ export interface JsonApiNotificationChannelPatch {
7161
7089
  * API identifier of an object
7162
7090
  */
7163
7091
  'id': string;
7164
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
7092
+ 'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
7165
7093
  }
7166
7094
  export type JsonApiNotificationChannelPatchTypeEnum = 'notificationChannel';
7167
- export interface JsonApiNotificationChannelPatchAttributes {
7095
+ export interface JsonApiNotificationChannelPatchDocument {
7096
+ 'data': JsonApiNotificationChannelPatch;
7097
+ }
7098
+ /**
7099
+ * JSON:API representation of notificationChannel entity.
7100
+ */
7101
+ export interface JsonApiNotificationChannelPostOptionalId {
7102
+ /**
7103
+ * Object type
7104
+ */
7105
+ 'type': JsonApiNotificationChannelPostOptionalIdTypeEnum;
7106
+ /**
7107
+ * API identifier of an object
7108
+ */
7109
+ 'id'?: string;
7110
+ 'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
7111
+ }
7112
+ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = 'notificationChannel';
7113
+ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7168
7114
  'name'?: string | null;
7169
7115
  'description'?: string | null;
7170
7116
  'destination'?: JsonApiNotificationChannelOutAttributesDestination;
@@ -7175,7 +7121,7 @@ export interface JsonApiNotificationChannelPatchAttributes {
7175
7121
  /**
7176
7122
  * 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
7177
7123
  */
7178
- 'dashboardLinkVisibility'?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
7124
+ 'dashboardLinkVisibility'?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
7179
7125
  /**
7180
7126
  * 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}}
7181
7127
  */
@@ -7183,33 +7129,15 @@ export interface JsonApiNotificationChannelPatchAttributes {
7183
7129
  /**
7184
7130
  * 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
7185
7131
  */
7186
- 'allowedRecipients'?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
7132
+ 'allowedRecipients'?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
7187
7133
  /**
7188
7134
  * 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
7189
7135
  */
7190
- 'inPlatformNotification'?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
7136
+ 'inPlatformNotification'?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
7191
7137
  }
7192
- export type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7193
- export type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7194
- export type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7195
- export interface JsonApiNotificationChannelPatchDocument {
7196
- 'data': JsonApiNotificationChannelPatch;
7197
- }
7198
- /**
7199
- * JSON:API representation of notificationChannel entity.
7200
- */
7201
- export interface JsonApiNotificationChannelPostOptionalId {
7202
- /**
7203
- * Object type
7204
- */
7205
- 'type': JsonApiNotificationChannelPostOptionalIdTypeEnum;
7206
- /**
7207
- * API identifier of an object
7208
- */
7209
- 'id'?: string;
7210
- 'attributes'?: JsonApiNotificationChannelPatchAttributes;
7211
- }
7212
- export type JsonApiNotificationChannelPostOptionalIdTypeEnum = 'notificationChannel';
7138
+ export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7139
+ export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7140
+ export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7213
7141
  export interface JsonApiNotificationChannelPostOptionalIdDocument {
7214
7142
  'data': JsonApiNotificationChannelPostOptionalId;
7215
7143
  }
@@ -7225,13 +7153,33 @@ export interface JsonApiOrganizationIn {
7225
7153
  * API identifier of an object
7226
7154
  */
7227
7155
  'id': string;
7228
- 'attributes'?: JsonApiOrganizationPatchAttributes;
7229
- 'relationships'?: JsonApiOrganizationPatchRelationships;
7156
+ 'attributes'?: JsonApiOrganizationInAttributes;
7157
+ 'relationships'?: JsonApiOrganizationInRelationships;
7230
7158
  }
7231
7159
  export type JsonApiOrganizationInTypeEnum = 'organization';
7160
+ export interface JsonApiOrganizationInAttributes {
7161
+ 'name'?: string | null;
7162
+ 'hostname'?: string;
7163
+ 'allowedOrigins'?: Array<string>;
7164
+ /**
7165
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7166
+ * @deprecated
7167
+ */
7168
+ 'earlyAccess'?: string | null;
7169
+ /**
7170
+ * The early access feature identifiers. They are used to enable experimental features.
7171
+ */
7172
+ 'earlyAccessValues'?: Array<string> | null;
7173
+ }
7232
7174
  export interface JsonApiOrganizationInDocument {
7233
7175
  'data': JsonApiOrganizationIn;
7234
7176
  }
7177
+ export interface JsonApiOrganizationInRelationships {
7178
+ 'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
7179
+ }
7180
+ export interface JsonApiOrganizationInRelationshipsIdentityProvider {
7181
+ 'data': JsonApiIdentityProviderLinkage | null;
7182
+ }
7235
7183
  /**
7236
7184
  * JSON:API representation of organization entity.
7237
7185
  */
@@ -7297,9 +7245,15 @@ export interface JsonApiOrganizationOutMeta {
7297
7245
  }
7298
7246
  export type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
7299
7247
  export interface JsonApiOrganizationOutRelationships {
7300
- 'bootstrapUser'?: JsonApiFilterViewOutRelationshipsUser;
7301
- 'bootstrapUserGroup'?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
7302
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7248
+ 'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7249
+ 'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7250
+ 'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
7251
+ }
7252
+ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7253
+ 'data': JsonApiUserLinkage | null;
7254
+ }
7255
+ export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7256
+ 'data': JsonApiUserGroupLinkage | null;
7303
7257
  }
7304
7258
  /**
7305
7259
  * JSON:API representation of patching organization entity.
@@ -7313,33 +7267,13 @@ export interface JsonApiOrganizationPatch {
7313
7267
  * API identifier of an object
7314
7268
  */
7315
7269
  'id': string;
7316
- 'attributes'?: JsonApiOrganizationPatchAttributes;
7317
- 'relationships'?: JsonApiOrganizationPatchRelationships;
7270
+ 'attributes'?: JsonApiOrganizationInAttributes;
7271
+ 'relationships'?: JsonApiOrganizationInRelationships;
7318
7272
  }
7319
7273
  export type JsonApiOrganizationPatchTypeEnum = 'organization';
7320
- export interface JsonApiOrganizationPatchAttributes {
7321
- 'name'?: string | null;
7322
- 'hostname'?: string;
7323
- 'allowedOrigins'?: Array<string>;
7324
- /**
7325
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7326
- * @deprecated
7327
- */
7328
- 'earlyAccess'?: string | null;
7329
- /**
7330
- * The early access feature identifiers. They are used to enable experimental features.
7331
- */
7332
- 'earlyAccessValues'?: Array<string> | null;
7333
- }
7334
7274
  export interface JsonApiOrganizationPatchDocument {
7335
7275
  'data': JsonApiOrganizationPatch;
7336
7276
  }
7337
- export interface JsonApiOrganizationPatchRelationships {
7338
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7339
- }
7340
- export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
7341
- 'data': JsonApiIdentityProviderLinkage | null;
7342
- }
7343
7277
  /**
7344
7278
  * JSON:API representation of organizationSetting entity.
7345
7279
  */
@@ -7383,7 +7317,7 @@ export interface JsonApiOrganizationSettingOutDocument {
7383
7317
  export interface JsonApiOrganizationSettingOutList {
7384
7318
  'data': Array<JsonApiOrganizationSettingOutWithLinks>;
7385
7319
  'links'?: ListLinks;
7386
- 'meta'?: JsonApiApiTokenOutListMeta;
7320
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7387
7321
  }
7388
7322
  export interface JsonApiOrganizationSettingOutWithLinks {
7389
7323
  /**
@@ -7459,7 +7393,7 @@ export interface JsonApiThemeOutDocument {
7459
7393
  export interface JsonApiThemeOutList {
7460
7394
  'data': Array<JsonApiThemeOutWithLinks>;
7461
7395
  'links'?: ListLinks;
7462
- 'meta'?: JsonApiApiTokenOutListMeta;
7396
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7463
7397
  }
7464
7398
  export interface JsonApiThemeOutWithLinks {
7465
7399
  /**
@@ -7523,7 +7457,7 @@ export interface JsonApiUserDataFilterOut {
7523
7457
  * API identifier of an object
7524
7458
  */
7525
7459
  'id': string;
7526
- 'meta'?: JsonApiFactOutMeta;
7460
+ 'meta'?: JsonApiExportDefinitionOutMeta;
7527
7461
  'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
7528
7462
  'relationships'?: JsonApiUserDataFilterOutRelationships;
7529
7463
  }
@@ -7546,20 +7480,20 @@ export type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLinks | Js
7546
7480
  export interface JsonApiUserDataFilterOutList {
7547
7481
  'data': Array<JsonApiUserDataFilterOutWithLinks>;
7548
7482
  'links'?: ListLinks;
7549
- 'meta'?: JsonApiApiTokenOutListMeta;
7483
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7550
7484
  /**
7551
7485
  * Included resources
7552
7486
  */
7553
7487
  'included'?: Array<JsonApiUserDataFilterOutIncludes>;
7554
7488
  }
7555
7489
  export interface JsonApiUserDataFilterOutRelationships {
7556
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
7557
- 'userGroup'?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
7558
- 'facts'?: JsonApiMetricOutRelationshipsFacts;
7559
- 'attributes'?: JsonApiMetricOutRelationshipsAttributes;
7560
- 'labels'?: JsonApiAttributeOutRelationshipsLabels;
7561
- 'metrics'?: JsonApiMetricOutRelationshipsMetrics;
7562
- 'datasets'?: JsonApiMetricOutRelationshipsDatasets;
7490
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7491
+ 'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7492
+ 'facts'?: JsonApiDatasetOutRelationshipsFacts;
7493
+ 'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
7494
+ 'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
7495
+ 'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
7496
+ 'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
7563
7497
  }
7564
7498
  export interface JsonApiUserDataFilterOutWithLinks {
7565
7499
  /**
@@ -7570,7 +7504,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
7570
7504
  * API identifier of an object
7571
7505
  */
7572
7506
  'id': string;
7573
- 'meta'?: JsonApiFactOutMeta;
7507
+ 'meta'?: JsonApiExportDefinitionOutMeta;
7574
7508
  'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
7575
7509
  'relationships'?: JsonApiUserDataFilterOutRelationships;
7576
7510
  'links'?: ObjectLinks;
@@ -7629,11 +7563,8 @@ export interface JsonApiUserDataFilterPostOptionalIdDocument {
7629
7563
  'data': JsonApiUserDataFilterPostOptionalId;
7630
7564
  }
7631
7565
  export interface JsonApiUserDataFilterPostOptionalIdRelationships {
7632
- 'user'?: JsonApiFilterViewOutRelationshipsUser;
7633
- 'userGroup'?: JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup;
7634
- }
7635
- export interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
7636
- 'data': JsonApiUserGroupLinkage | null;
7566
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7567
+ 'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7637
7568
  }
7638
7569
  /**
7639
7570
  * JSON:API representation of userGroup entity.
@@ -7695,7 +7626,7 @@ export interface JsonApiUserGroupOutDocument {
7695
7626
  export interface JsonApiUserGroupOutList {
7696
7627
  'data': Array<JsonApiUserGroupOutWithLinks>;
7697
7628
  'links'?: ListLinks;
7698
- 'meta'?: JsonApiApiTokenOutListMeta;
7629
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7699
7630
  /**
7700
7631
  * Included resources
7701
7632
  */
@@ -7775,7 +7706,7 @@ export interface JsonApiUserIdentifierOutDocument {
7775
7706
  export interface JsonApiUserIdentifierOutList {
7776
7707
  'data': Array<JsonApiUserIdentifierOutWithLinks>;
7777
7708
  'links'?: ListLinks;
7778
- 'meta'?: JsonApiApiTokenOutListMeta;
7709
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7779
7710
  }
7780
7711
  export interface JsonApiUserIdentifierOutWithLinks {
7781
7712
  /**
@@ -7853,7 +7784,7 @@ export interface JsonApiUserOutDocument {
7853
7784
  export interface JsonApiUserOutList {
7854
7785
  'data': Array<JsonApiUserOutWithLinks>;
7855
7786
  'links'?: ListLinks;
7856
- 'meta'?: JsonApiApiTokenOutListMeta;
7787
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7857
7788
  /**
7858
7789
  * Included resources
7859
7790
  */
@@ -7952,7 +7883,7 @@ export interface JsonApiUserSettingOutDocument {
7952
7883
  export interface JsonApiUserSettingOutList {
7953
7884
  'data': Array<JsonApiUserSettingOutWithLinks>;
7954
7885
  'links'?: ListLinks;
7955
- 'meta'?: JsonApiApiTokenOutListMeta;
7886
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
7956
7887
  }
7957
7888
  export interface JsonApiUserSettingOutWithLinks {
7958
7889
  /**
@@ -7979,20 +7910,9 @@ export interface JsonApiVisualizationObjectIn {
7979
7910
  * API identifier of an object
7980
7911
  */
7981
7912
  'id': string;
7982
- 'attributes': JsonApiVisualizationObjectInAttributes;
7913
+ 'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
7983
7914
  }
7984
7915
  export type JsonApiVisualizationObjectInTypeEnum = 'visualizationObject';
7985
- export interface JsonApiVisualizationObjectInAttributes {
7986
- 'title'?: string;
7987
- 'description'?: string;
7988
- 'tags'?: Array<string>;
7989
- 'areRelationsValid'?: boolean;
7990
- /**
7991
- * Free-form JSON content. Maximum supported length is 250000 characters.
7992
- */
7993
- 'content': object;
7994
- 'isHidden'?: boolean;
7995
- }
7996
7916
  export interface JsonApiVisualizationObjectInDocument {
7997
7917
  'data': JsonApiVisualizationObjectIn;
7998
7918
  }
@@ -8016,7 +7936,7 @@ export interface JsonApiVisualizationObjectOut {
8016
7936
  * API identifier of an object
8017
7937
  */
8018
7938
  'id': string;
8019
- 'meta'?: JsonApiFactOutMeta;
7939
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8020
7940
  'attributes': JsonApiVisualizationObjectOutAttributes;
8021
7941
  'relationships'?: JsonApiMetricOutRelationships;
8022
7942
  }
@@ -8059,23 +7979,19 @@ export interface JsonApiVisualizationObjectOutDocument {
8059
7979
  /**
8060
7980
  * Included resources
8061
7981
  */
8062
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
7982
+ 'included'?: Array<JsonApiMetricOutIncludes>;
8063
7983
  }
8064
- /**
8065
- * @type JsonApiVisualizationObjectOutIncludes
8066
- */
8067
- export type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
8068
7984
  /**
8069
7985
  * A JSON:API document with a list of resources
8070
7986
  */
8071
7987
  export interface JsonApiVisualizationObjectOutList {
8072
7988
  'data': Array<JsonApiVisualizationObjectOutWithLinks>;
8073
7989
  'links'?: ListLinks;
8074
- 'meta'?: JsonApiApiTokenOutListMeta;
7990
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8075
7991
  /**
8076
7992
  * Included resources
8077
7993
  */
8078
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
7994
+ 'included'?: Array<JsonApiMetricOutIncludes>;
8079
7995
  }
8080
7996
  export interface JsonApiVisualizationObjectOutWithLinks {
8081
7997
  /**
@@ -8086,7 +8002,7 @@ export interface JsonApiVisualizationObjectOutWithLinks {
8086
8002
  * API identifier of an object
8087
8003
  */
8088
8004
  'id': string;
8089
- 'meta'?: JsonApiFactOutMeta;
8005
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8090
8006
  'attributes': JsonApiVisualizationObjectOutAttributes;
8091
8007
  'relationships'?: JsonApiMetricOutRelationships;
8092
8008
  'links'?: ObjectLinks;
@@ -8133,9 +8049,20 @@ export interface JsonApiVisualizationObjectPostOptionalId {
8133
8049
  * API identifier of an object
8134
8050
  */
8135
8051
  'id'?: string;
8136
- 'attributes': JsonApiVisualizationObjectInAttributes;
8052
+ 'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
8137
8053
  }
8138
8054
  export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = 'visualizationObject';
8055
+ export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
8056
+ 'title'?: string;
8057
+ 'description'?: string;
8058
+ 'tags'?: Array<string>;
8059
+ 'areRelationsValid'?: boolean;
8060
+ /**
8061
+ * Free-form JSON content. Maximum supported length is 250000 characters.
8062
+ */
8063
+ 'content': object;
8064
+ 'isHidden'?: boolean;
8065
+ }
8139
8066
  export interface JsonApiVisualizationObjectPostOptionalIdDocument {
8140
8067
  'data': JsonApiVisualizationObjectPostOptionalId;
8141
8068
  }
@@ -8164,7 +8091,7 @@ export interface JsonApiWorkspaceAutomationOutAttributes {
8164
8091
  * Additional details to be included in the automated message.
8165
8092
  */
8166
8093
  'details'?: object;
8167
- 'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
8094
+ 'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
8168
8095
  /**
8169
8096
  * Current state of the automation.
8170
8097
  */
@@ -8173,23 +8100,87 @@ export interface JsonApiWorkspaceAutomationOutAttributes {
8173
8100
  * Specify automation evaluation mode.
8174
8101
  */
8175
8102
  'evaluationMode'?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
8176
- 'schedule'?: JsonApiAutomationOutAttributesSchedule;
8177
- 'alert'?: JsonApiAutomationOutAttributesAlert;
8178
- 'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
8179
- 'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
8180
- 'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
8181
- 'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
8182
- 'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
8183
- 'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
8103
+ 'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
8104
+ 'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
8105
+ 'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
8106
+ 'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
8107
+ 'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
8108
+ 'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
8109
+ 'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
8110
+ 'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
8184
8111
  /**
8185
8112
  * External recipients of the automation action results.
8186
8113
  */
8187
- 'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
8114
+ 'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
8188
8115
  'createdAt'?: string;
8189
8116
  'modifiedAt'?: string;
8190
8117
  }
8191
8118
  export type JsonApiWorkspaceAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
8192
8119
  export type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
8120
+ export interface JsonApiWorkspaceAutomationOutAttributesAlert {
8121
+ 'execution': AlertAfm;
8122
+ 'condition': AlertCondition;
8123
+ /**
8124
+ * Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met. ONCE_PER_INTERVAL - alert is triggered when the condition is met, then suppressed for the interval. If no interval is specified, it behaves as ALWAYS.
8125
+ */
8126
+ 'trigger'?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
8127
+ /**
8128
+ * Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
8129
+ */
8130
+ 'interval'?: JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum;
8131
+ }
8132
+ export type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
8133
+ export type JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
8134
+ export interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
8135
+ 'requestPayload': DashboardTabularExportRequestV2;
8136
+ }
8137
+ export interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
8138
+ /**
8139
+ * E-mail address to send notifications from.
8140
+ */
8141
+ 'email': string;
8142
+ }
8143
+ export interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
8144
+ 'requestPayload': ImageExportRequest;
8145
+ }
8146
+ /**
8147
+ * Additional information for the automation.
8148
+ */
8149
+ export interface JsonApiWorkspaceAutomationOutAttributesMetadata {
8150
+ [key: string]: any;
8151
+ 'widget'?: string;
8152
+ 'visibleFilters'?: Array<VisibleFilter>;
8153
+ }
8154
+ export interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
8155
+ 'requestPayload': RawExportAutomationRequest;
8156
+ }
8157
+ export interface JsonApiWorkspaceAutomationOutAttributesSchedule {
8158
+ /**
8159
+ * Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
8160
+ */
8161
+ 'cron': string;
8162
+ /**
8163
+ * Human-readable description of the cron expression.
8164
+ */
8165
+ 'cronDescription'?: string;
8166
+ /**
8167
+ * Timezone in which the schedule is defined.
8168
+ */
8169
+ 'timezone': string;
8170
+ /**
8171
+ * Timestamp of the first scheduled action. If not provided default to the next scheduled time.
8172
+ */
8173
+ 'firstRun'?: string;
8174
+ }
8175
+ export interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
8176
+ 'requestPayload': SlidesExportRequest;
8177
+ }
8178
+ export interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
8179
+ 'requestPayload': TabularExportRequest;
8180
+ }
8181
+ export interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
8182
+ 'requestPayload': VisualExportRequest;
8183
+ }
8193
8184
  /**
8194
8185
  * @type JsonApiWorkspaceAutomationOutIncludes
8195
8186
  */
@@ -8200,7 +8191,7 @@ export type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDashboardOu
8200
8191
  export interface JsonApiWorkspaceAutomationOutList {
8201
8192
  'data': Array<JsonApiWorkspaceAutomationOutWithLinks>;
8202
8193
  'links'?: ListLinks;
8203
- 'meta'?: JsonApiApiTokenOutListMeta;
8194
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8204
8195
  /**
8205
8196
  * Included resources
8206
8197
  */
@@ -8208,13 +8199,34 @@ export interface JsonApiWorkspaceAutomationOutList {
8208
8199
  }
8209
8200
  export interface JsonApiWorkspaceAutomationOutRelationships {
8210
8201
  'workspace'?: JsonApiWorkspaceOutRelationshipsParent;
8211
- 'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
8212
- 'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
8213
- 'createdBy'?: JsonApiMetricOutRelationshipsCreatedBy;
8214
- 'modifiedBy'?: JsonApiMetricOutRelationshipsCreatedBy;
8215
- 'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
8216
- 'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
8217
- 'automationResults'?: JsonApiAutomationOutRelationshipsAutomationResults;
8202
+ 'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
8203
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
8204
+ 'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
8205
+ 'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
8206
+ 'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
8207
+ 'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
8208
+ 'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
8209
+ }
8210
+ export interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
8211
+ /**
8212
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8213
+ */
8214
+ 'data': Array<JsonApiAutomationResultLinkage>;
8215
+ }
8216
+ export interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
8217
+ /**
8218
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8219
+ */
8220
+ 'data': Array<JsonApiExportDefinitionLinkage>;
8221
+ }
8222
+ export interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
8223
+ 'data': JsonApiNotificationChannelLinkage | null;
8224
+ }
8225
+ export interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
8226
+ /**
8227
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8228
+ */
8229
+ 'data': Array<JsonApiUserLinkage>;
8218
8230
  }
8219
8231
  export interface JsonApiWorkspaceAutomationOutWithLinks {
8220
8232
  /**
@@ -8269,7 +8281,7 @@ export interface JsonApiWorkspaceDataFilterOut {
8269
8281
  * API identifier of an object
8270
8282
  */
8271
8283
  'id': string;
8272
- 'meta'?: JsonApiFactOutMeta;
8284
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8273
8285
  'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
8274
8286
  'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
8275
8287
  }
@@ -8293,7 +8305,7 @@ export interface JsonApiWorkspaceDataFilterOutDocument {
8293
8305
  export interface JsonApiWorkspaceDataFilterOutList {
8294
8306
  'data': Array<JsonApiWorkspaceDataFilterOutWithLinks>;
8295
8307
  'links'?: ListLinks;
8296
- 'meta'?: JsonApiApiTokenOutListMeta;
8308
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8297
8309
  /**
8298
8310
  * Included resources
8299
8311
  */
@@ -8317,7 +8329,7 @@ export interface JsonApiWorkspaceDataFilterOutWithLinks {
8317
8329
  * API identifier of an object
8318
8330
  */
8319
8331
  'id': string;
8320
- 'meta'?: JsonApiFactOutMeta;
8332
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8321
8333
  'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
8322
8334
  'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
8323
8335
  'links'?: ObjectLinks;
@@ -8381,7 +8393,7 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
8381
8393
  * API identifier of an object
8382
8394
  */
8383
8395
  'id': string;
8384
- 'meta'?: JsonApiFactOutMeta;
8396
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8385
8397
  'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8386
8398
  'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8387
8399
  }
@@ -8405,7 +8417,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
8405
8417
  export interface JsonApiWorkspaceDataFilterSettingOutList {
8406
8418
  'data': Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
8407
8419
  'links'?: ListLinks;
8408
- 'meta'?: JsonApiApiTokenOutListMeta;
8420
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8409
8421
  /**
8410
8422
  * Included resources
8411
8423
  */
@@ -8426,7 +8438,7 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
8426
8438
  * API identifier of an object
8427
8439
  */
8428
8440
  'id': string;
8429
- 'meta'?: JsonApiFactOutMeta;
8441
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8430
8442
  'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
8431
8443
  'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
8432
8444
  'links'?: ObjectLinks;
@@ -8541,7 +8553,7 @@ export interface JsonApiWorkspaceOutDocument {
8541
8553
  export interface JsonApiWorkspaceOutList {
8542
8554
  'data': Array<JsonApiWorkspaceOutWithLinks>;
8543
8555
  'links'?: ListLinks;
8544
- 'meta'?: JsonApiApiTokenOutListMeta;
8556
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8545
8557
  /**
8546
8558
  * Included resources
8547
8559
  */
@@ -8653,7 +8665,7 @@ export interface JsonApiWorkspaceSettingOut {
8653
8665
  * API identifier of an object
8654
8666
  */
8655
8667
  'id': string;
8656
- 'meta'?: JsonApiFactOutMeta;
8668
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8657
8669
  'attributes'?: JsonApiUserSettingInAttributes;
8658
8670
  }
8659
8671
  export type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
@@ -8667,7 +8679,7 @@ export interface JsonApiWorkspaceSettingOutDocument {
8667
8679
  export interface JsonApiWorkspaceSettingOutList {
8668
8680
  'data': Array<JsonApiWorkspaceSettingOutWithLinks>;
8669
8681
  'links'?: ListLinks;
8670
- 'meta'?: JsonApiApiTokenOutListMeta;
8682
+ 'meta'?: JsonApiCustomGeoCollectionOutListMeta;
8671
8683
  }
8672
8684
  export interface JsonApiWorkspaceSettingOutWithLinks {
8673
8685
  /**
@@ -8678,7 +8690,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
8678
8690
  * API identifier of an object
8679
8691
  */
8680
8692
  'id': string;
8681
- 'meta'?: JsonApiFactOutMeta;
8693
+ 'meta'?: JsonApiExportDefinitionOutMeta;
8682
8694
  'attributes'?: JsonApiUserSettingInAttributes;
8683
8695
  'links'?: ObjectLinks;
8684
8696
  }
@@ -26406,7 +26418,7 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityJwks(jsonApiJwk
26406
26418
  */
26407
26419
  export declare function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations(workspaceId: string, jsonApiKnowledgeRecommendationPostOptionalIdDocument: JsonApiKnowledgeRecommendationPostOptionalIdDocument, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
26408
26420
  /**
26409
- *
26421
+ * Will be soon removed and replaced by LlmProvider.
26410
26422
  * @summary Post LLM endpoint entities
26411
26423
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
26412
26424
  * @param {*} [options] Override http request option.
@@ -26753,7 +26765,8 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id: string
26753
26765
  */
26754
26766
  export declare function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
26755
26767
  /**
26756
- *
26768
+ * Will be soon removed and replaced by LlmProvider.
26769
+ * @summary Delete LLM endpoint entity
26757
26770
  * @param {string} id
26758
26771
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
26759
26772
  * @param {*} [options] Override http request option.
@@ -27299,7 +27312,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesKnowledgeReco
27299
27312
  */
27300
27313
  export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
27301
27314
  /**
27302
- *
27315
+ * Will be soon removed and replaced by LlmProvider.
27303
27316
  * @summary Get all LLM endpoint entities
27304
27317
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
27305
27318
  * @param {number} [page] Zero-based page index (0..N)
@@ -27883,7 +27896,7 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityKnowledgeRecommend
27883
27896
  */
27884
27897
  export declare function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId: string, objectId: string, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
27885
27898
  /**
27886
- *
27899
+ * Will be soon removed and replaced by LlmProvider.
27887
27900
  * @summary Get LLM endpoint entity
27888
27901
  * @param {string} id
27889
27902
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
@@ -28369,7 +28382,7 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityKnowledgeRecomme
28369
28382
  */
28370
28383
  export declare function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId: string, objectId: string, jsonApiLabelPatchDocument: JsonApiLabelPatchDocument, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
28371
28384
  /**
28372
- *
28385
+ * Will be soon removed and replaced by LlmProvider.
28373
28386
  * @summary Patch LLM endpoint entity
28374
28387
  * @param {string} id
28375
28388
  * @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
@@ -29028,7 +29041,7 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityJwks(id: string
29028
29041
  */
29029
29042
  export declare function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations(workspaceId: string, objectId: string, jsonApiKnowledgeRecommendationInDocument: JsonApiKnowledgeRecommendationInDocument, filter?: string, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29030
29043
  /**
29031
- *
29044
+ * Will be soon removed and replaced by LlmProvider.
29032
29045
  * @summary PUT LLM endpoint entity
29033
29046
  * @param {string} id
29034
29047
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
@@ -29418,7 +29431,7 @@ export declare function EntitiesApi_CreateEntityJwks(axios: AxiosInstance, baseP
29418
29431
  */
29419
29432
  export declare function EntitiesApi_CreateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
29420
29433
  /**
29421
- *
29434
+ * Will be soon removed and replaced by LlmProvider.
29422
29435
  * @summary Post LLM endpoint entities
29423
29436
  * @param {AxiosInstance} axios Axios instance.
29424
29437
  * @param {string} basePath Base path.
@@ -29779,7 +29792,8 @@ export declare function EntitiesApi_DeleteEntityJwks(axios: AxiosInstance, baseP
29779
29792
  */
29780
29793
  export declare function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
29781
29794
  /**
29782
- *
29795
+ * Will be soon removed and replaced by LlmProvider.
29796
+ * @summary Delete LLM endpoint entity
29783
29797
  * @param {AxiosInstance} axios Axios instance.
29784
29798
  * @param {string} basePath Base path.
29785
29799
  * @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
@@ -30226,7 +30240,7 @@ export declare function EntitiesApi_GetAllEntitiesKnowledgeRecommendations(axios
30226
30240
  */
30227
30241
  export declare function EntitiesApi_GetAllEntitiesLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLabelOutList>;
30228
30242
  /**
30229
- *
30243
+ * Will be soon removed and replaced by LlmProvider.
30230
30244
  * @summary Get all LLM endpoint entities
30231
30245
  * @param {AxiosInstance} axios Axios instance.
30232
30246
  * @param {string} basePath Base path.
@@ -30717,7 +30731,7 @@ export declare function EntitiesApi_GetEntityKnowledgeRecommendations(axios: Axi
30717
30731
  */
30718
30732
  export declare function EntitiesApi_GetEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLabelOutDocument>;
30719
30733
  /**
30720
- *
30734
+ * Will be soon removed and replaced by LlmProvider.
30721
30735
  * @summary Get LLM endpoint entity
30722
30736
  * @param {AxiosInstance} axios Axios instance.
30723
30737
  * @param {string} basePath Base path.
@@ -31165,7 +31179,7 @@ export declare function EntitiesApi_PatchEntityKnowledgeRecommendations(axios: A
31165
31179
  */
31166
31180
  export declare function EntitiesApi_PatchEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLabelOutDocument>;
31167
31181
  /**
31168
- *
31182
+ * Will be soon removed and replaced by LlmProvider.
31169
31183
  * @summary Patch LLM endpoint entity
31170
31184
  * @param {AxiosInstance} axios Axios instance.
31171
31185
  * @param {string} basePath Base path.
@@ -31768,7 +31782,7 @@ export declare function EntitiesApi_UpdateEntityJwks(axios: AxiosInstance, baseP
31768
31782
  */
31769
31783
  export declare function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
31770
31784
  /**
31771
- *
31785
+ * Will be soon removed and replaced by LlmProvider.
31772
31786
  * @summary PUT LLM endpoint entity
31773
31787
  * @param {AxiosInstance} axios Axios instance.
31774
31788
  * @param {string} basePath Base path.
@@ -32112,10 +32126,11 @@ export interface EntitiesApiInterface {
32112
32126
  */
32113
32127
  createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
32114
32128
  /**
32115
- *
32129
+ * Will be soon removed and replaced by LlmProvider.
32116
32130
  * @summary Post LLM endpoint entities
32117
32131
  * @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
32118
32132
  * @param {*} [options] Override http request option.
32133
+ * @deprecated
32119
32134
  * @throws {RequiredError}
32120
32135
  * @memberof EntitiesApiInterface
32121
32136
  */
@@ -32407,9 +32422,11 @@ export interface EntitiesApiInterface {
32407
32422
  */
32408
32423
  deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
32409
32424
  /**
32410
- *
32425
+ * Will be soon removed and replaced by LlmProvider.
32426
+ * @summary Delete LLM endpoint entity
32411
32427
  * @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
32412
32428
  * @param {*} [options] Override http request option.
32429
+ * @deprecated
32413
32430
  * @throws {RequiredError}
32414
32431
  * @memberof EntitiesApiInterface
32415
32432
  */
@@ -32772,10 +32789,11 @@ export interface EntitiesApiInterface {
32772
32789
  */
32773
32790
  getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
32774
32791
  /**
32775
- *
32792
+ * Will be soon removed and replaced by LlmProvider.
32776
32793
  * @summary Get all LLM endpoint entities
32777
32794
  * @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
32778
32795
  * @param {*} [options] Override http request option.
32796
+ * @deprecated
32779
32797
  * @throws {RequiredError}
32780
32798
  * @memberof EntitiesApiInterface
32781
32799
  */
@@ -33173,10 +33191,11 @@ export interface EntitiesApiInterface {
33173
33191
  */
33174
33192
  getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
33175
33193
  /**
33176
- *
33194
+ * Will be soon removed and replaced by LlmProvider.
33177
33195
  * @summary Get LLM endpoint entity
33178
33196
  * @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
33179
33197
  * @param {*} [options] Override http request option.
33198
+ * @deprecated
33180
33199
  * @throws {RequiredError}
33181
33200
  * @memberof EntitiesApiInterface
33182
33201
  */
@@ -33539,10 +33558,11 @@ export interface EntitiesApiInterface {
33539
33558
  */
33540
33559
  patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
33541
33560
  /**
33542
- *
33561
+ * Will be soon removed and replaced by LlmProvider.
33543
33562
  * @summary Patch LLM endpoint entity
33544
33563
  * @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
33545
33564
  * @param {*} [options] Override http request option.
33565
+ * @deprecated
33546
33566
  * @throws {RequiredError}
33547
33567
  * @memberof EntitiesApiInterface
33548
33568
  */
@@ -34032,10 +34052,11 @@ export interface EntitiesApiInterface {
34032
34052
  */
34033
34053
  updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
34034
34054
  /**
34035
- *
34055
+ * Will be soon removed and replaced by LlmProvider.
34036
34056
  * @summary PUT LLM endpoint entity
34037
34057
  * @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
34038
34058
  * @param {*} [options] Override http request option.
34059
+ * @deprecated
34039
34060
  * @throws {RequiredError}
34040
34061
  * @memberof EntitiesApiInterface
34041
34062
  */
@@ -42253,10 +42274,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
42253
42274
  */
42254
42275
  createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
42255
42276
  /**
42256
- *
42277
+ * Will be soon removed and replaced by LlmProvider.
42257
42278
  * @summary Post LLM endpoint entities
42258
42279
  * @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
42259
42280
  * @param {*} [options] Override http request option.
42281
+ * @deprecated
42260
42282
  * @throws {RequiredError}
42261
42283
  * @memberof EntitiesApi
42262
42284
  */
@@ -42548,9 +42570,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
42548
42570
  */
42549
42571
  deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
42550
42572
  /**
42551
- *
42573
+ * Will be soon removed and replaced by LlmProvider.
42574
+ * @summary Delete LLM endpoint entity
42552
42575
  * @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
42553
42576
  * @param {*} [options] Override http request option.
42577
+ * @deprecated
42554
42578
  * @throws {RequiredError}
42555
42579
  * @memberof EntitiesApi
42556
42580
  */
@@ -42913,10 +42937,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
42913
42937
  */
42914
42938
  getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
42915
42939
  /**
42916
- *
42940
+ * Will be soon removed and replaced by LlmProvider.
42917
42941
  * @summary Get all LLM endpoint entities
42918
42942
  * @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
42919
42943
  * @param {*} [options] Override http request option.
42944
+ * @deprecated
42920
42945
  * @throws {RequiredError}
42921
42946
  * @memberof EntitiesApi
42922
42947
  */
@@ -43314,10 +43339,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
43314
43339
  */
43315
43340
  getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
43316
43341
  /**
43317
- *
43342
+ * Will be soon removed and replaced by LlmProvider.
43318
43343
  * @summary Get LLM endpoint entity
43319
43344
  * @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
43320
43345
  * @param {*} [options] Override http request option.
43346
+ * @deprecated
43321
43347
  * @throws {RequiredError}
43322
43348
  * @memberof EntitiesApi
43323
43349
  */
@@ -43680,10 +43706,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
43680
43706
  */
43681
43707
  patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
43682
43708
  /**
43683
- *
43709
+ * Will be soon removed and replaced by LlmProvider.
43684
43710
  * @summary Patch LLM endpoint entity
43685
43711
  * @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
43686
43712
  * @param {*} [options] Override http request option.
43713
+ * @deprecated
43687
43714
  * @throws {RequiredError}
43688
43715
  * @memberof EntitiesApi
43689
43716
  */
@@ -44173,10 +44200,11 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
44173
44200
  */
44174
44201
  updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
44175
44202
  /**
44176
- *
44203
+ * Will be soon removed and replaced by LlmProvider.
44177
44204
  * @summary PUT LLM endpoint entity
44178
44205
  * @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
44179
44206
  * @param {*} [options] Override http request option.
44207
+ * @deprecated
44180
44208
  * @throws {RequiredError}
44181
44209
  * @memberof EntitiesApi
44182
44210
  */
@@ -51612,7 +51640,7 @@ export declare class LDMDeclarativeAPIsApi extends BaseAPI implements LDMDeclara
51612
51640
  setLogicalModel(requestParameters: LDMDeclarativeAPIsApiSetLogicalModelRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
51613
51641
  }
51614
51642
  /**
51615
- *
51643
+ * Will be soon removed and replaced by LlmProvider.
51616
51644
  * @summary Post LLM endpoint entities
51617
51645
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
51618
51646
  * @param {*} [options] Override http request option.
@@ -51621,7 +51649,8 @@ export declare class LDMDeclarativeAPIsApi extends BaseAPI implements LDMDeclara
51621
51649
  */
51622
51650
  export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51623
51651
  /**
51624
- *
51652
+ * Will be soon removed and replaced by LlmProvider.
51653
+ * @summary Delete LLM endpoint entity
51625
51654
  * @param {string} id
51626
51655
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
51627
51656
  * @param {*} [options] Override http request option.
@@ -51630,7 +51659,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoint
51630
51659
  */
51631
51660
  export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51632
51661
  /**
51633
- *
51662
+ * Will be soon removed and replaced by LlmProvider.
51634
51663
  * @summary Get all LLM endpoint entities
51635
51664
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
51636
51665
  * @param {number} [page] Zero-based page index (0..N)
@@ -51643,7 +51672,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoint
51643
51672
  */
51644
51673
  export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51645
51674
  /**
51646
- *
51675
+ * Will be soon removed and replaced by LlmProvider.
51647
51676
  * @summary Get LLM endpoint entity
51648
51677
  * @param {string} id
51649
51678
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
@@ -51653,7 +51682,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoi
51653
51682
  */
51654
51683
  export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51655
51684
  /**
51656
- *
51685
+ * Will be soon removed and replaced by LlmProvider.
51657
51686
  * @summary Patch LLM endpoint entity
51658
51687
  * @param {string} id
51659
51688
  * @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
@@ -51664,7 +51693,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(i
51664
51693
  */
51665
51694
  export declare function LLMEndpointsApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51666
51695
  /**
51667
- *
51696
+ * Will be soon removed and replaced by LlmProvider.
51668
51697
  * @summary PUT LLM endpoint entity
51669
51698
  * @param {string} id
51670
51699
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
@@ -51675,7 +51704,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_PatchEntityLlmEndpoints
51675
51704
  */
51676
51705
  export declare function LLMEndpointsApiAxiosParamCreator_UpdateEntityLlmEndpoints(id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
51677
51706
  /**
51678
- *
51707
+ * Will be soon removed and replaced by LlmProvider.
51679
51708
  * @summary Post LLM endpoint entities
51680
51709
  * @param {AxiosInstance} axios Axios instance.
51681
51710
  * @param {string} basePath Base path.
@@ -51686,7 +51715,8 @@ export declare function LLMEndpointsApiAxiosParamCreator_UpdateEntityLlmEndpoint
51686
51715
  */
51687
51716
  export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51688
51717
  /**
51689
- *
51718
+ * Will be soon removed and replaced by LlmProvider.
51719
+ * @summary Delete LLM endpoint entity
51690
51720
  * @param {AxiosInstance} axios Axios instance.
51691
51721
  * @param {string} basePath Base path.
51692
51722
  * @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
@@ -51696,7 +51726,7 @@ export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosIns
51696
51726
  */
51697
51727
  export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
51698
51728
  /**
51699
- *
51729
+ * Will be soon removed and replaced by LlmProvider.
51700
51730
  * @summary Get all LLM endpoint entities
51701
51731
  * @param {AxiosInstance} axios Axios instance.
51702
51732
  * @param {string} basePath Base path.
@@ -51707,7 +51737,7 @@ export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosIns
51707
51737
  */
51708
51738
  export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLlmEndpointOutList>;
51709
51739
  /**
51710
- *
51740
+ * Will be soon removed and replaced by LlmProvider.
51711
51741
  * @summary Get LLM endpoint entity
51712
51742
  * @param {AxiosInstance} axios Axios instance.
51713
51743
  * @param {string} basePath Base path.
@@ -51718,7 +51748,7 @@ export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosI
51718
51748
  */
51719
51749
  export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51720
51750
  /**
51721
- *
51751
+ * Will be soon removed and replaced by LlmProvider.
51722
51752
  * @summary Patch LLM endpoint entity
51723
51753
  * @param {AxiosInstance} axios Axios instance.
51724
51754
  * @param {string} basePath Base path.
@@ -51729,7 +51759,7 @@ export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstan
51729
51759
  */
51730
51760
  export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51731
51761
  /**
51732
- *
51762
+ * Will be soon removed and replaced by LlmProvider.
51733
51763
  * @summary PUT LLM endpoint entity
51734
51764
  * @param {AxiosInstance} axios Axios instance.
51735
51765
  * @param {string} basePath Base path.
@@ -51746,54 +51776,61 @@ export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosIns
51746
51776
  */
51747
51777
  export interface LLMEndpointsApiInterface {
51748
51778
  /**
51749
- *
51779
+ * Will be soon removed and replaced by LlmProvider.
51750
51780
  * @summary Post LLM endpoint entities
51751
51781
  * @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
51752
51782
  * @param {*} [options] Override http request option.
51783
+ * @deprecated
51753
51784
  * @throws {RequiredError}
51754
51785
  * @memberof LLMEndpointsApiInterface
51755
51786
  */
51756
51787
  createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51757
51788
  /**
51758
- *
51789
+ * Will be soon removed and replaced by LlmProvider.
51790
+ * @summary Delete LLM endpoint entity
51759
51791
  * @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
51760
51792
  * @param {*} [options] Override http request option.
51793
+ * @deprecated
51761
51794
  * @throws {RequiredError}
51762
51795
  * @memberof LLMEndpointsApiInterface
51763
51796
  */
51764
51797
  deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
51765
51798
  /**
51766
- *
51799
+ * Will be soon removed and replaced by LlmProvider.
51767
51800
  * @summary Get all LLM endpoint entities
51768
51801
  * @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
51769
51802
  * @param {*} [options] Override http request option.
51803
+ * @deprecated
51770
51804
  * @throws {RequiredError}
51771
51805
  * @memberof LLMEndpointsApiInterface
51772
51806
  */
51773
51807
  getAllEntitiesLlmEndpoints(requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
51774
51808
  /**
51775
- *
51809
+ * Will be soon removed and replaced by LlmProvider.
51776
51810
  * @summary Get LLM endpoint entity
51777
51811
  * @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
51778
51812
  * @param {*} [options] Override http request option.
51813
+ * @deprecated
51779
51814
  * @throws {RequiredError}
51780
51815
  * @memberof LLMEndpointsApiInterface
51781
51816
  */
51782
51817
  getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51783
51818
  /**
51784
- *
51819
+ * Will be soon removed and replaced by LlmProvider.
51785
51820
  * @summary Patch LLM endpoint entity
51786
51821
  * @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
51787
51822
  * @param {*} [options] Override http request option.
51823
+ * @deprecated
51788
51824
  * @throws {RequiredError}
51789
51825
  * @memberof LLMEndpointsApiInterface
51790
51826
  */
51791
51827
  patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51792
51828
  /**
51793
- *
51829
+ * Will be soon removed and replaced by LlmProvider.
51794
51830
  * @summary PUT LLM endpoint entity
51795
51831
  * @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
51796
51832
  * @param {*} [options] Override http request option.
51833
+ * @deprecated
51797
51834
  * @throws {RequiredError}
51798
51835
  * @memberof LLMEndpointsApiInterface
51799
51836
  */
@@ -51945,54 +51982,61 @@ export interface LLMEndpointsApiUpdateEntityLlmEndpointsRequest {
51945
51982
  */
51946
51983
  export declare class LLMEndpointsApi extends BaseAPI implements LLMEndpointsApiInterface {
51947
51984
  /**
51948
- *
51985
+ * Will be soon removed and replaced by LlmProvider.
51949
51986
  * @summary Post LLM endpoint entities
51950
51987
  * @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
51951
51988
  * @param {*} [options] Override http request option.
51989
+ * @deprecated
51952
51990
  * @throws {RequiredError}
51953
51991
  * @memberof LLMEndpointsApi
51954
51992
  */
51955
51993
  createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51956
51994
  /**
51957
- *
51995
+ * Will be soon removed and replaced by LlmProvider.
51996
+ * @summary Delete LLM endpoint entity
51958
51997
  * @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
51959
51998
  * @param {*} [options] Override http request option.
51999
+ * @deprecated
51960
52000
  * @throws {RequiredError}
51961
52001
  * @memberof LLMEndpointsApi
51962
52002
  */
51963
52003
  deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
51964
52004
  /**
51965
- *
52005
+ * Will be soon removed and replaced by LlmProvider.
51966
52006
  * @summary Get all LLM endpoint entities
51967
52007
  * @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
51968
52008
  * @param {*} [options] Override http request option.
52009
+ * @deprecated
51969
52010
  * @throws {RequiredError}
51970
52011
  * @memberof LLMEndpointsApi
51971
52012
  */
51972
52013
  getAllEntitiesLlmEndpoints(requestParameters?: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
51973
52014
  /**
51974
- *
52015
+ * Will be soon removed and replaced by LlmProvider.
51975
52016
  * @summary Get LLM endpoint entity
51976
52017
  * @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
51977
52018
  * @param {*} [options] Override http request option.
52019
+ * @deprecated
51978
52020
  * @throws {RequiredError}
51979
52021
  * @memberof LLMEndpointsApi
51980
52022
  */
51981
52023
  getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51982
52024
  /**
51983
- *
52025
+ * Will be soon removed and replaced by LlmProvider.
51984
52026
  * @summary Patch LLM endpoint entity
51985
52027
  * @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
51986
52028
  * @param {*} [options] Override http request option.
52029
+ * @deprecated
51987
52030
  * @throws {RequiredError}
51988
52031
  * @memberof LLMEndpointsApi
51989
52032
  */
51990
52033
  patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
51991
52034
  /**
51992
- *
52035
+ * Will be soon removed and replaced by LlmProvider.
51993
52036
  * @summary PUT LLM endpoint entity
51994
52037
  * @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
51995
52038
  * @param {*} [options] Override http request option.
52039
+ * @deprecated
51996
52040
  * @throws {RequiredError}
51997
52041
  * @memberof LLMEndpointsApi
51998
52042
  */
@@ -58715,7 +58759,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEn
58715
58759
  */
58716
58760
  export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEntityIdentityProviders(jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
58717
58761
  /**
58718
- *
58762
+ * Will be soon removed and replaced by LlmProvider.
58719
58763
  * @summary Post LLM endpoint entities
58720
58764
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
58721
58765
  * @param {*} [options] Override http request option.
@@ -58831,7 +58875,8 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEn
58831
58875
  */
58832
58876
  export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
58833
58877
  /**
58834
- *
58878
+ * Will be soon removed and replaced by LlmProvider.
58879
+ * @summary Delete LLM endpoint entity
58835
58880
  * @param {string} id
58836
58881
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
58837
58882
  * @param {*} [options] Override http request option.
@@ -58988,7 +59033,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetAllEn
58988
59033
  */
58989
59034
  export declare function OrganizationModelControllerApiAxiosParamCreator_GetAllEntitiesIdentityProviders(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
58990
59035
  /**
58991
- *
59036
+ * Will be soon removed and replaced by LlmProvider.
58992
59037
  * @summary Get all LLM endpoint entities
58993
59038
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
58994
59039
  * @param {number} [page] Zero-based page index (0..N)
@@ -59181,7 +59226,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntit
59181
59226
  */
59182
59227
  export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
59183
59228
  /**
59184
- *
59229
+ * Will be soon removed and replaced by LlmProvider.
59185
59230
  * @summary Get LLM endpoint entity
59186
59231
  * @param {string} id
59187
59232
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
@@ -59328,7 +59373,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEnt
59328
59373
  */
59329
59374
  export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEntityIdentityProviders(id: string, jsonApiIdentityProviderPatchDocument: JsonApiIdentityProviderPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
59330
59375
  /**
59331
- *
59376
+ * Will be soon removed and replaced by LlmProvider.
59332
59377
  * @summary Patch LLM endpoint entity
59333
59378
  * @param {string} id
59334
59379
  * @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
@@ -59463,7 +59508,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEn
59463
59508
  */
59464
59509
  export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEntityIdentityProviders(id: string, jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
59465
59510
  /**
59466
- *
59511
+ * Will be soon removed and replaced by LlmProvider.
59467
59512
  * @summary PUT LLM endpoint entity
59468
59513
  * @param {string} id
59469
59514
  * @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
@@ -59598,7 +59643,7 @@ export declare function OrganizationModelControllerApi_CreateEntityExportTemplat
59598
59643
  */
59599
59644
  export declare function OrganizationModelControllerApi_CreateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
59600
59645
  /**
59601
- *
59646
+ * Will be soon removed and replaced by LlmProvider.
59602
59647
  * @summary Post LLM endpoint entities
59603
59648
  * @param {AxiosInstance} axios Axios instance.
59604
59649
  * @param {string} basePath Base path.
@@ -59730,7 +59775,8 @@ export declare function OrganizationModelControllerApi_DeleteEntityExportTemplat
59730
59775
  */
59731
59776
  export declare function OrganizationModelControllerApi_DeleteEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
59732
59777
  /**
59733
- *
59778
+ * Will be soon removed and replaced by LlmProvider.
59779
+ * @summary Delete LLM endpoint entity
59734
59780
  * @param {AxiosInstance} axios Axios instance.
59735
59781
  * @param {string} basePath Base path.
59736
59782
  * @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
@@ -59883,7 +59929,7 @@ export declare function OrganizationModelControllerApi_GetAllEntitiesExportTempl
59883
59929
  */
59884
59930
  export declare function OrganizationModelControllerApi_GetAllEntitiesIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiIdentityProviderOutList>;
59885
59931
  /**
59886
- *
59932
+ * Will be soon removed and replaced by LlmProvider.
59887
59933
  * @summary Get all LLM endpoint entities
59888
59934
  * @param {AxiosInstance} axios Axios instance.
59889
59935
  * @param {string} basePath Base path.
@@ -60058,7 +60104,7 @@ export declare function OrganizationModelControllerApi_GetEntityExportTemplates(
60058
60104
  */
60059
60105
  export declare function OrganizationModelControllerApi_GetEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60060
60106
  /**
60061
- *
60107
+ * Will be soon removed and replaced by LlmProvider.
60062
60108
  * @summary Get LLM endpoint entity
60063
60109
  * @param {AxiosInstance} axios Axios instance.
60064
60110
  * @param {string} basePath Base path.
@@ -60211,7 +60257,7 @@ export declare function OrganizationModelControllerApi_PatchEntityExportTemplate
60211
60257
  */
60212
60258
  export declare function OrganizationModelControllerApi_PatchEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60213
60259
  /**
60214
- *
60260
+ * Will be soon removed and replaced by LlmProvider.
60215
60261
  * @summary Patch LLM endpoint entity
60216
60262
  * @param {AxiosInstance} axios Axios instance.
60217
60263
  * @param {string} basePath Base path.
@@ -60343,7 +60389,7 @@ export declare function OrganizationModelControllerApi_UpdateEntityExportTemplat
60343
60389
  */
60344
60390
  export declare function OrganizationModelControllerApi_UpdateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60345
60391
  /**
60346
- *
60392
+ * Will be soon removed and replaced by LlmProvider.
60347
60393
  * @summary PUT LLM endpoint entity
60348
60394
  * @param {AxiosInstance} axios Axios instance.
60349
60395
  * @param {string} basePath Base path.
@@ -60473,10 +60519,11 @@ export interface OrganizationModelControllerApiInterface {
60473
60519
  */
60474
60520
  createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60475
60521
  /**
60476
- *
60522
+ * Will be soon removed and replaced by LlmProvider.
60477
60523
  * @summary Post LLM endpoint entities
60478
60524
  * @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
60479
60525
  * @param {*} [options] Override http request option.
60526
+ * @deprecated
60480
60527
  * @throws {RequiredError}
60481
60528
  * @memberof OrganizationModelControllerApiInterface
60482
60529
  */
@@ -60581,9 +60628,11 @@ export interface OrganizationModelControllerApiInterface {
60581
60628
  */
60582
60629
  deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
60583
60630
  /**
60584
- *
60631
+ * Will be soon removed and replaced by LlmProvider.
60632
+ * @summary Delete LLM endpoint entity
60585
60633
  * @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
60586
60634
  * @param {*} [options] Override http request option.
60635
+ * @deprecated
60587
60636
  * @throws {RequiredError}
60588
60637
  * @memberof OrganizationModelControllerApiInterface
60589
60638
  */
@@ -60706,10 +60755,11 @@ export interface OrganizationModelControllerApiInterface {
60706
60755
  */
60707
60756
  getAllEntitiesIdentityProviders(requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
60708
60757
  /**
60709
- *
60758
+ * Will be soon removed and replaced by LlmProvider.
60710
60759
  * @summary Get all LLM endpoint entities
60711
60760
  * @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
60712
60761
  * @param {*} [options] Override http request option.
60762
+ * @deprecated
60713
60763
  * @throws {RequiredError}
60714
60764
  * @memberof OrganizationModelControllerApiInterface
60715
60765
  */
@@ -60849,10 +60899,11 @@ export interface OrganizationModelControllerApiInterface {
60849
60899
  */
60850
60900
  getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60851
60901
  /**
60852
- *
60902
+ * Will be soon removed and replaced by LlmProvider.
60853
60903
  * @summary Get LLM endpoint entity
60854
60904
  * @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
60855
60905
  * @param {*} [options] Override http request option.
60906
+ * @deprecated
60856
60907
  * @throws {RequiredError}
60857
60908
  * @memberof OrganizationModelControllerApiInterface
60858
60909
  */
@@ -60974,10 +61025,11 @@ export interface OrganizationModelControllerApiInterface {
60974
61025
  */
60975
61026
  patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
60976
61027
  /**
60977
- *
61028
+ * Will be soon removed and replaced by LlmProvider.
60978
61029
  * @summary Patch LLM endpoint entity
60979
61030
  * @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
60980
61031
  * @param {*} [options] Override http request option.
61032
+ * @deprecated
60981
61033
  * @throws {RequiredError}
60982
61034
  * @memberof OrganizationModelControllerApiInterface
60983
61035
  */
@@ -61082,10 +61134,11 @@ export interface OrganizationModelControllerApiInterface {
61082
61134
  */
61083
61135
  updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
61084
61136
  /**
61085
- *
61137
+ * Will be soon removed and replaced by LlmProvider.
61086
61138
  * @summary PUT LLM endpoint entity
61087
61139
  * @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
61088
61140
  * @param {*} [options] Override http request option.
61141
+ * @deprecated
61089
61142
  * @throws {RequiredError}
61090
61143
  * @memberof OrganizationModelControllerApiInterface
61091
61144
  */
@@ -63186,10 +63239,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63186
63239
  */
63187
63240
  createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
63188
63241
  /**
63189
- *
63242
+ * Will be soon removed and replaced by LlmProvider.
63190
63243
  * @summary Post LLM endpoint entities
63191
63244
  * @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
63192
63245
  * @param {*} [options] Override http request option.
63246
+ * @deprecated
63193
63247
  * @throws {RequiredError}
63194
63248
  * @memberof OrganizationModelControllerApi
63195
63249
  */
@@ -63294,9 +63348,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63294
63348
  */
63295
63349
  deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
63296
63350
  /**
63297
- *
63351
+ * Will be soon removed and replaced by LlmProvider.
63352
+ * @summary Delete LLM endpoint entity
63298
63353
  * @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
63299
63354
  * @param {*} [options] Override http request option.
63355
+ * @deprecated
63300
63356
  * @throws {RequiredError}
63301
63357
  * @memberof OrganizationModelControllerApi
63302
63358
  */
@@ -63419,10 +63475,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63419
63475
  */
63420
63476
  getAllEntitiesIdentityProviders(requestParameters?: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
63421
63477
  /**
63422
- *
63478
+ * Will be soon removed and replaced by LlmProvider.
63423
63479
  * @summary Get all LLM endpoint entities
63424
63480
  * @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
63425
63481
  * @param {*} [options] Override http request option.
63482
+ * @deprecated
63426
63483
  * @throws {RequiredError}
63427
63484
  * @memberof OrganizationModelControllerApi
63428
63485
  */
@@ -63562,10 +63619,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63562
63619
  */
63563
63620
  getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
63564
63621
  /**
63565
- *
63622
+ * Will be soon removed and replaced by LlmProvider.
63566
63623
  * @summary Get LLM endpoint entity
63567
63624
  * @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
63568
63625
  * @param {*} [options] Override http request option.
63626
+ * @deprecated
63569
63627
  * @throws {RequiredError}
63570
63628
  * @memberof OrganizationModelControllerApi
63571
63629
  */
@@ -63687,10 +63745,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63687
63745
  */
63688
63746
  patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
63689
63747
  /**
63690
- *
63748
+ * Will be soon removed and replaced by LlmProvider.
63691
63749
  * @summary Patch LLM endpoint entity
63692
63750
  * @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
63693
63751
  * @param {*} [options] Override http request option.
63752
+ * @deprecated
63694
63753
  * @throws {RequiredError}
63695
63754
  * @memberof OrganizationModelControllerApi
63696
63755
  */
@@ -63795,10 +63854,11 @@ export declare class OrganizationModelControllerApi extends BaseAPI implements O
63795
63854
  */
63796
63855
  updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
63797
63856
  /**
63798
- *
63857
+ * Will be soon removed and replaced by LlmProvider.
63799
63858
  * @summary PUT LLM endpoint entity
63800
63859
  * @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
63801
63860
  * @param {*} [options] Override http request option.
63861
+ * @deprecated
63802
63862
  * @throws {RequiredError}
63803
63863
  * @memberof OrganizationModelControllerApi
63804
63864
  */