@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1233 -925
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/actions/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +453 -50
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +296 -30
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +970 -910
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +81 -54
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/package.json +5 -5
|
@@ -2927,7 +2927,7 @@ export interface JsonApiAggregatedFactOut {
|
|
|
2927
2927
|
* API identifier of an object
|
|
2928
2928
|
*/
|
|
2929
2929
|
'id': string;
|
|
2930
|
-
'meta'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
3112
|
-
'modifiedBy'?:
|
|
3113
|
-
'certifiedBy'?:
|
|
3122
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3123
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3124
|
+
'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
3114
3125
|
'visualizationObjects'?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
3115
3126
|
'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
3116
|
-
'labels'?:
|
|
3117
|
-
'metrics'?:
|
|
3118
|
-
'datasets'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
3388
|
-
'modifiedBy'?:
|
|
3389
|
-
'attributes'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
3521
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
3493
3522
|
'defaultView'?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
3494
|
-
'labels'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
3562
|
-
'relationships'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
3612
|
-
'alert'?:
|
|
3613
|
-
'tabularExports'?: Array<
|
|
3614
|
-
'visualExports'?: Array<
|
|
3615
|
-
'imageExports'?: Array<
|
|
3616
|
-
'rawExports'?: Array<
|
|
3617
|
-
'slidesExports'?: Array<
|
|
3618
|
-
'dashboardTabularExports'?: Array<
|
|
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<
|
|
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'?:
|
|
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'?:
|
|
3724
|
-
'analyticalDashboard'?:
|
|
3725
|
-
'createdBy'?:
|
|
3726
|
-
'modifiedBy'?:
|
|
3727
|
-
'exportDefinitions'?:
|
|
3728
|
-
'recipients'?:
|
|
3729
|
-
'automationResults'?:
|
|
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'?:
|
|
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'?:
|
|
3780
|
-
'relationships'?:
|
|
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'?:
|
|
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'?:
|
|
3821
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
3822
|
+
}
|
|
3823
|
+
export interface JsonApiAutomationResultOutRelationshipsAutomation {
|
|
3824
|
+
'data': JsonApiAutomationLinkage | null;
|
|
3876
3825
|
}
|
|
3877
3826
|
export interface JsonApiAutomationResultOutWithLinks {
|
|
3878
3827
|
/**
|
|
@@ -3900,9 +3849,16 @@ export interface JsonApiColorPaletteIn {
|
|
|
3900
3849
|
* API identifier of an object
|
|
3901
3850
|
*/
|
|
3902
3851
|
'id': string;
|
|
3903
|
-
'attributes':
|
|
3852
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3904
3853
|
}
|
|
3905
3854
|
export type JsonApiColorPaletteInTypeEnum = 'colorPalette';
|
|
3855
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
3856
|
+
'name': string;
|
|
3857
|
+
/**
|
|
3858
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3859
|
+
*/
|
|
3860
|
+
'content': object;
|
|
3861
|
+
}
|
|
3906
3862
|
export interface JsonApiColorPaletteInDocument {
|
|
3907
3863
|
'data': JsonApiColorPaletteIn;
|
|
3908
3864
|
}
|
|
@@ -3918,16 +3874,9 @@ export interface JsonApiColorPaletteOut {
|
|
|
3918
3874
|
* API identifier of an object
|
|
3919
3875
|
*/
|
|
3920
3876
|
'id': string;
|
|
3921
|
-
'attributes':
|
|
3877
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3922
3878
|
}
|
|
3923
3879
|
export type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
|
|
3924
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
3925
|
-
'name': string;
|
|
3926
|
-
/**
|
|
3927
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3928
|
-
*/
|
|
3929
|
-
'content': object;
|
|
3930
|
-
}
|
|
3931
3880
|
export interface JsonApiColorPaletteOutDocument {
|
|
3932
3881
|
'data': JsonApiColorPaletteOut;
|
|
3933
3882
|
'links'?: ObjectLinks;
|
|
@@ -3938,7 +3887,7 @@ export interface JsonApiColorPaletteOutDocument {
|
|
|
3938
3887
|
export interface JsonApiColorPaletteOutList {
|
|
3939
3888
|
'data': Array<JsonApiColorPaletteOutWithLinks>;
|
|
3940
3889
|
'links'?: ListLinks;
|
|
3941
|
-
'meta'?:
|
|
3890
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
3942
3891
|
}
|
|
3943
3892
|
export interface JsonApiColorPaletteOutWithLinks {
|
|
3944
3893
|
/**
|
|
@@ -3949,7 +3898,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
3949
3898
|
* API identifier of an object
|
|
3950
3899
|
*/
|
|
3951
3900
|
'id': string;
|
|
3952
|
-
'attributes':
|
|
3901
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
3953
3902
|
'links'?: ObjectLinks;
|
|
3954
3903
|
}
|
|
3955
3904
|
export type JsonApiColorPaletteOutWithLinksTypeEnum = 'colorPalette';
|
|
@@ -3990,16 +3939,9 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
3990
3939
|
* API identifier of an object
|
|
3991
3940
|
*/
|
|
3992
3941
|
'id': string;
|
|
3993
|
-
'attributes'?:
|
|
3942
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
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,7 +3957,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4015
3957
|
* API identifier of an object
|
|
4016
3958
|
*/
|
|
4017
3959
|
'id': string;
|
|
4018
|
-
'attributes'?:
|
|
3960
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4019
3961
|
}
|
|
4020
3962
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
|
|
4021
3963
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -4034,9 +3976,16 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4034
3976
|
* API identifier of an object
|
|
4035
3977
|
*/
|
|
4036
3978
|
'id': string;
|
|
4037
|
-
'attributes'?:
|
|
3979
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
4038
3980
|
}
|
|
4039
3981
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
|
|
3982
|
+
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
3983
|
+
'lastRotation'?: string;
|
|
3984
|
+
/**
|
|
3985
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
3986
|
+
*/
|
|
3987
|
+
'rotationInterval'?: string;
|
|
3988
|
+
}
|
|
4040
3989
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4041
3990
|
'data': JsonApiCookieSecurityConfigurationPatch;
|
|
4042
3991
|
}
|
|
@@ -4052,9 +4001,12 @@ export interface JsonApiCspDirectiveIn {
|
|
|
4052
4001
|
* API identifier of an object
|
|
4053
4002
|
*/
|
|
4054
4003
|
'id': string;
|
|
4055
|
-
'attributes':
|
|
4004
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4056
4005
|
}
|
|
4057
4006
|
export type JsonApiCspDirectiveInTypeEnum = 'cspDirective';
|
|
4007
|
+
export interface JsonApiCspDirectiveInAttributes {
|
|
4008
|
+
'sources': Array<string>;
|
|
4009
|
+
}
|
|
4058
4010
|
export interface JsonApiCspDirectiveInDocument {
|
|
4059
4011
|
'data': JsonApiCspDirectiveIn;
|
|
4060
4012
|
}
|
|
@@ -4070,12 +4022,9 @@ export interface JsonApiCspDirectiveOut {
|
|
|
4070
4022
|
* API identifier of an object
|
|
4071
4023
|
*/
|
|
4072
4024
|
'id': string;
|
|
4073
|
-
'attributes':
|
|
4025
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4074
4026
|
}
|
|
4075
4027
|
export type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
|
|
4076
|
-
export interface JsonApiCspDirectiveOutAttributes {
|
|
4077
|
-
'sources': Array<string>;
|
|
4078
|
-
}
|
|
4079
4028
|
export interface JsonApiCspDirectiveOutDocument {
|
|
4080
4029
|
'data': JsonApiCspDirectiveOut;
|
|
4081
4030
|
'links'?: ObjectLinks;
|
|
@@ -4086,7 +4035,7 @@ export interface JsonApiCspDirectiveOutDocument {
|
|
|
4086
4035
|
export interface JsonApiCspDirectiveOutList {
|
|
4087
4036
|
'data': Array<JsonApiCspDirectiveOutWithLinks>;
|
|
4088
4037
|
'links'?: ListLinks;
|
|
4089
|
-
'meta'?:
|
|
4038
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
4090
4039
|
}
|
|
4091
4040
|
export interface JsonApiCspDirectiveOutWithLinks {
|
|
4092
4041
|
/**
|
|
@@ -4097,7 +4046,7 @@ export interface JsonApiCspDirectiveOutWithLinks {
|
|
|
4097
4046
|
* API identifier of an object
|
|
4098
4047
|
*/
|
|
4099
4048
|
'id': string;
|
|
4100
|
-
'attributes':
|
|
4049
|
+
'attributes': JsonApiCspDirectiveInAttributes;
|
|
4101
4050
|
'links'?: ObjectLinks;
|
|
4102
4051
|
}
|
|
4103
4052
|
export type JsonApiCspDirectiveOutWithLinksTypeEnum = 'cspDirective';
|
|
@@ -4134,7 +4083,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4134
4083
|
* API identifier of an object
|
|
4135
4084
|
*/
|
|
4136
4085
|
'id': string;
|
|
4137
|
-
'attributes':
|
|
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'?:
|
|
4156
|
-
'attributes':
|
|
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'?:
|
|
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'?:
|
|
4188
|
-
'attributes':
|
|
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':
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
4398
|
-
'modifiedBy'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
4868
|
-
'facts'?:
|
|
4819
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
4820
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
4869
4821
|
'aggregatedFacts'?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
4870
|
-
'references'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
4975
|
-
'relationships'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
5053
|
-
'automation'?:
|
|
5054
|
-
'createdBy'?:
|
|
5055
|
-
'modifiedBy'?:
|
|
5019
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5020
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
5021
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
5022
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
5056
5023
|
}
|
|
5057
|
-
export interface
|
|
5058
|
-
'data':
|
|
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'?:
|
|
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'?:
|
|
5091
|
-
'relationships'?:
|
|
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'?:
|
|
5121
|
-
'relationships'?:
|
|
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
|
*/
|
|
@@ -5136,7 +5103,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5136
5103
|
* API identifier of an object
|
|
5137
5104
|
*/
|
|
5138
5105
|
'id': string;
|
|
5139
|
-
'attributes':
|
|
5106
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5140
5107
|
}
|
|
5141
5108
|
export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
|
|
5142
5109
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -5154,42 +5121,9 @@ export interface JsonApiExportTemplateOut {
|
|
|
5154
5121
|
* API identifier of an object
|
|
5155
5122
|
*/
|
|
5156
5123
|
'id': string;
|
|
5157
|
-
'attributes':
|
|
5124
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5158
5125
|
}
|
|
5159
5126
|
export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
5160
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5161
|
-
/**
|
|
5162
|
-
* User-facing name of the Slides template.
|
|
5163
|
-
*/
|
|
5164
|
-
'name': string;
|
|
5165
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5166
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5167
|
-
}
|
|
5168
|
-
/**
|
|
5169
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5170
|
-
*/
|
|
5171
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5172
|
-
/**
|
|
5173
|
-
* Export types this template applies to.
|
|
5174
|
-
*/
|
|
5175
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5176
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
5177
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
5178
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5179
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5180
|
-
}
|
|
5181
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5182
|
-
/**
|
|
5183
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5184
|
-
*/
|
|
5185
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5186
|
-
/**
|
|
5187
|
-
* Export types this template applies to.
|
|
5188
|
-
*/
|
|
5189
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5190
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5191
|
-
}
|
|
5192
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5193
5127
|
export interface JsonApiExportTemplateOutDocument {
|
|
5194
5128
|
'data': JsonApiExportTemplateOut;
|
|
5195
5129
|
'links'?: ObjectLinks;
|
|
@@ -5200,7 +5134,7 @@ export interface JsonApiExportTemplateOutDocument {
|
|
|
5200
5134
|
export interface JsonApiExportTemplateOutList {
|
|
5201
5135
|
'data': Array<JsonApiExportTemplateOutWithLinks>;
|
|
5202
5136
|
'links'?: ListLinks;
|
|
5203
|
-
'meta'?:
|
|
5137
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
5204
5138
|
}
|
|
5205
5139
|
export interface JsonApiExportTemplateOutWithLinks {
|
|
5206
5140
|
/**
|
|
@@ -5211,7 +5145,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5211
5145
|
* API identifier of an object
|
|
5212
5146
|
*/
|
|
5213
5147
|
'id': string;
|
|
5214
|
-
'attributes':
|
|
5148
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5215
5149
|
'links'?: ObjectLinks;
|
|
5216
5150
|
}
|
|
5217
5151
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
|
|
@@ -5235,8 +5169,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5235
5169
|
* User-facing name of the Slides template.
|
|
5236
5170
|
*/
|
|
5237
5171
|
'name'?: string;
|
|
5238
|
-
'dashboardSlidesTemplate'?:
|
|
5239
|
-
'widgetSlidesTemplate'?:
|
|
5172
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5173
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5240
5174
|
}
|
|
5241
5175
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5242
5176
|
'data': JsonApiExportTemplatePatch;
|
|
@@ -5253,9 +5187,42 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5253
5187
|
* API identifier of an object
|
|
5254
5188
|
*/
|
|
5255
5189
|
'id'?: string;
|
|
5256
|
-
'attributes':
|
|
5190
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5257
5191
|
}
|
|
5258
5192
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
|
|
5193
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5194
|
+
/**
|
|
5195
|
+
* User-facing name of the Slides template.
|
|
5196
|
+
*/
|
|
5197
|
+
'name': string;
|
|
5198
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5199
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5200
|
+
}
|
|
5201
|
+
/**
|
|
5202
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5203
|
+
*/
|
|
5204
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5205
|
+
/**
|
|
5206
|
+
* Export types this template applies to.
|
|
5207
|
+
*/
|
|
5208
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5209
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
5210
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
5211
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5212
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5213
|
+
}
|
|
5214
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5215
|
+
/**
|
|
5216
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5217
|
+
*/
|
|
5218
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5219
|
+
/**
|
|
5220
|
+
* Export types this template applies to.
|
|
5221
|
+
*/
|
|
5222
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5223
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5224
|
+
}
|
|
5225
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5259
5226
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5260
5227
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
5261
5228
|
}
|
|
@@ -5279,7 +5246,7 @@ export interface JsonApiFactOut {
|
|
|
5279
5246
|
* API identifier of an object
|
|
5280
5247
|
*/
|
|
5281
5248
|
'id': string;
|
|
5282
|
-
'meta'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
5451
|
-
'datasets'?:
|
|
5452
|
-
'labels'?:
|
|
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'?:
|
|
5413
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
5464
5414
|
'attributes': JsonApiFilterContextOutAttributes;
|
|
5465
5415
|
'relationships'?: JsonApiFilterContextOutRelationships;
|
|
5466
5416
|
'links'?: ObjectLinks;
|
|
@@ -5579,21 +5529,15 @@ export type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOutWithLink
|
|
|
5579
5529
|
export interface JsonApiFilterViewOutList {
|
|
5580
5530
|
'data': Array<JsonApiFilterViewOutWithLinks>;
|
|
5581
5531
|
'links'?: ListLinks;
|
|
5582
|
-
'meta'?:
|
|
5532
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
5583
5533
|
/**
|
|
5584
5534
|
* Included resources
|
|
5585
5535
|
*/
|
|
5586
5536
|
'included'?: Array<JsonApiFilterViewOutIncludes>;
|
|
5587
5537
|
}
|
|
5588
5538
|
export interface JsonApiFilterViewOutRelationships {
|
|
5589
|
-
'analyticalDashboard'?:
|
|
5590
|
-
'user'?:
|
|
5591
|
-
}
|
|
5592
|
-
export interface JsonApiFilterViewOutRelationshipsAnalyticalDashboard {
|
|
5593
|
-
'data': JsonApiAnalyticalDashboardLinkage | null;
|
|
5594
|
-
}
|
|
5595
|
-
export interface JsonApiFilterViewOutRelationshipsUser {
|
|
5596
|
-
'data': JsonApiUserLinkage | null;
|
|
5539
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5540
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5597
5541
|
}
|
|
5598
5542
|
export interface JsonApiFilterViewOutWithLinks {
|
|
5599
5543
|
/**
|
|
@@ -5654,9 +5598,60 @@ export interface JsonApiIdentityProviderIn {
|
|
|
5654
5598
|
* API identifier of an object
|
|
5655
5599
|
*/
|
|
5656
5600
|
'id': string;
|
|
5657
|
-
'attributes'?:
|
|
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'?:
|
|
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'?:
|
|
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
|
}
|
|
@@ -5866,7 +5810,7 @@ export interface JsonApiJwkOutDocument {
|
|
|
5866
5810
|
export interface JsonApiJwkOutList {
|
|
5867
5811
|
'data': Array<JsonApiJwkOutWithLinks>;
|
|
5868
5812
|
'links'?: ListLinks;
|
|
5869
|
-
'meta'?:
|
|
5813
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
5870
5814
|
}
|
|
5871
5815
|
export interface JsonApiJwkOutWithLinks {
|
|
5872
5816
|
/**
|
|
@@ -5911,11 +5855,31 @@ export interface JsonApiKnowledgeRecommendationIn {
|
|
|
5911
5855
|
* API identifier of an object
|
|
5912
5856
|
*/
|
|
5913
5857
|
'id': string;
|
|
5914
|
-
'attributes':
|
|
5915
|
-
'relationships':
|
|
5858
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
5859
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
5916
5860
|
}
|
|
5917
5861
|
export type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
|
|
5918
|
-
export interface
|
|
5862
|
+
export interface JsonApiKnowledgeRecommendationInDocument {
|
|
5863
|
+
'data': JsonApiKnowledgeRecommendationIn;
|
|
5864
|
+
}
|
|
5865
|
+
/**
|
|
5866
|
+
* JSON:API representation of knowledgeRecommendation entity.
|
|
5867
|
+
*/
|
|
5868
|
+
export interface JsonApiKnowledgeRecommendationOut {
|
|
5869
|
+
/**
|
|
5870
|
+
* Object type
|
|
5871
|
+
*/
|
|
5872
|
+
'type': JsonApiKnowledgeRecommendationOutTypeEnum;
|
|
5873
|
+
/**
|
|
5874
|
+
* API identifier of an object
|
|
5875
|
+
*/
|
|
5876
|
+
'id': string;
|
|
5877
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
5878
|
+
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
5879
|
+
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
5880
|
+
}
|
|
5881
|
+
export type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
|
|
5882
|
+
export interface JsonApiKnowledgeRecommendationOutAttributes {
|
|
5919
5883
|
/**
|
|
5920
5884
|
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
5921
5885
|
*/
|
|
@@ -5933,11 +5897,11 @@ export interface JsonApiKnowledgeRecommendationInAttributes {
|
|
|
5933
5897
|
/**
|
|
5934
5898
|
* Direction of the metric change
|
|
5935
5899
|
*/
|
|
5936
|
-
'direction':
|
|
5900
|
+
'direction': JsonApiKnowledgeRecommendationOutAttributesDirectionEnum;
|
|
5937
5901
|
/**
|
|
5938
5902
|
* Time period for comparison
|
|
5939
5903
|
*/
|
|
5940
|
-
'comparisonType':
|
|
5904
|
+
'comparisonType': JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum;
|
|
5941
5905
|
/**
|
|
5942
5906
|
* ID of the widget where the anomaly was detected
|
|
5943
5907
|
*/
|
|
@@ -5978,34 +5942,155 @@ export interface JsonApiKnowledgeRecommendationInAttributes {
|
|
|
5978
5942
|
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
5979
5943
|
*/
|
|
5980
5944
|
'analyticalDashboardTitle'?: string;
|
|
5945
|
+
'createdAt'?: string;
|
|
5981
5946
|
}
|
|
5982
|
-
export type
|
|
5983
|
-
export type
|
|
5984
|
-
export interface
|
|
5985
|
-
'data':
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5947
|
+
export type JsonApiKnowledgeRecommendationOutAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
5948
|
+
export type JsonApiKnowledgeRecommendationOutAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
5949
|
+
export interface JsonApiKnowledgeRecommendationOutDocument {
|
|
5950
|
+
'data': JsonApiKnowledgeRecommendationOut;
|
|
5951
|
+
'links'?: ObjectLinks;
|
|
5952
|
+
/**
|
|
5953
|
+
* Included resources
|
|
5954
|
+
*/
|
|
5955
|
+
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
5990
5956
|
}
|
|
5991
5957
|
/**
|
|
5992
|
-
*
|
|
5958
|
+
* @type JsonApiKnowledgeRecommendationOutIncludes
|
|
5993
5959
|
*/
|
|
5994
|
-
export
|
|
5960
|
+
export type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiMetricOutWithLinks;
|
|
5961
|
+
/**
|
|
5962
|
+
* A JSON:API document with a list of resources
|
|
5963
|
+
*/
|
|
5964
|
+
export interface JsonApiKnowledgeRecommendationOutList {
|
|
5965
|
+
'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
|
|
5966
|
+
'links'?: ListLinks;
|
|
5967
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
5968
|
+
/**
|
|
5969
|
+
* Included resources
|
|
5970
|
+
*/
|
|
5971
|
+
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
5972
|
+
}
|
|
5973
|
+
export interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
5974
|
+
'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
5975
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
5976
|
+
}
|
|
5977
|
+
export interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
5995
5978
|
/**
|
|
5996
5979
|
* Object type
|
|
5997
5980
|
*/
|
|
5998
|
-
'type':
|
|
5981
|
+
'type': JsonApiKnowledgeRecommendationOutWithLinksTypeEnum;
|
|
5999
5982
|
/**
|
|
6000
5983
|
* API identifier of an object
|
|
6001
5984
|
*/
|
|
6002
5985
|
'id': string;
|
|
6003
|
-
'meta'?:
|
|
5986
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
6004
5987
|
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
6005
5988
|
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
5989
|
+
'links'?: ObjectLinks;
|
|
6006
5990
|
}
|
|
6007
|
-
export type
|
|
6008
|
-
|
|
5991
|
+
export type JsonApiKnowledgeRecommendationOutWithLinksTypeEnum = 'knowledgeRecommendation';
|
|
5992
|
+
/**
|
|
5993
|
+
* JSON:API representation of patching knowledgeRecommendation entity.
|
|
5994
|
+
*/
|
|
5995
|
+
export interface JsonApiKnowledgeRecommendationPatch {
|
|
5996
|
+
/**
|
|
5997
|
+
* Object type
|
|
5998
|
+
*/
|
|
5999
|
+
'type': JsonApiKnowledgeRecommendationPatchTypeEnum;
|
|
6000
|
+
/**
|
|
6001
|
+
* API identifier of an object
|
|
6002
|
+
*/
|
|
6003
|
+
'id': string;
|
|
6004
|
+
'attributes': JsonApiKnowledgeRecommendationPatchAttributes;
|
|
6005
|
+
'relationships': JsonApiKnowledgeRecommendationOutRelationships;
|
|
6006
|
+
}
|
|
6007
|
+
export type JsonApiKnowledgeRecommendationPatchTypeEnum = 'knowledgeRecommendation';
|
|
6008
|
+
export interface JsonApiKnowledgeRecommendationPatchAttributes {
|
|
6009
|
+
/**
|
|
6010
|
+
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
6011
|
+
*/
|
|
6012
|
+
'title'?: string;
|
|
6013
|
+
/**
|
|
6014
|
+
* Description of the recommendation
|
|
6015
|
+
*/
|
|
6016
|
+
'description'?: string;
|
|
6017
|
+
'tags'?: Array<string>;
|
|
6018
|
+
'areRelationsValid'?: boolean;
|
|
6019
|
+
/**
|
|
6020
|
+
* Human-readable title of the metric (denormalized for display)
|
|
6021
|
+
*/
|
|
6022
|
+
'metricTitle'?: string;
|
|
6023
|
+
/**
|
|
6024
|
+
* Direction of the metric change
|
|
6025
|
+
*/
|
|
6026
|
+
'direction'?: JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum;
|
|
6027
|
+
/**
|
|
6028
|
+
* Time period for comparison
|
|
6029
|
+
*/
|
|
6030
|
+
'comparisonType'?: JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum;
|
|
6031
|
+
/**
|
|
6032
|
+
* ID of the widget where the anomaly was detected
|
|
6033
|
+
*/
|
|
6034
|
+
'widgetId'?: string;
|
|
6035
|
+
/**
|
|
6036
|
+
* Name of the widget where the anomaly was detected
|
|
6037
|
+
*/
|
|
6038
|
+
'widgetName'?: string;
|
|
6039
|
+
/**
|
|
6040
|
+
* Confidence score (0.0 to 1.0)
|
|
6041
|
+
*/
|
|
6042
|
+
'confidence'?: any;
|
|
6043
|
+
/**
|
|
6044
|
+
* Structured recommendations data as JSON
|
|
6045
|
+
*/
|
|
6046
|
+
'recommendations'?: object;
|
|
6047
|
+
/**
|
|
6048
|
+
* Number of source documents used for generation
|
|
6049
|
+
*/
|
|
6050
|
+
'sourceCount'?: number;
|
|
6051
|
+
/**
|
|
6052
|
+
* Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
|
|
6053
|
+
*/
|
|
6054
|
+
'referencePeriod'?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
* Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
|
|
6057
|
+
*/
|
|
6058
|
+
'analyzedPeriod'?: string;
|
|
6059
|
+
/**
|
|
6060
|
+
* Metric value in the reference period
|
|
6061
|
+
*/
|
|
6062
|
+
'referenceValue'?: any;
|
|
6063
|
+
/**
|
|
6064
|
+
* Metric value in the analyzed period (the observed value that triggered the anomaly)
|
|
6065
|
+
*/
|
|
6066
|
+
'analyzedValue'?: any;
|
|
6067
|
+
/**
|
|
6068
|
+
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
6069
|
+
*/
|
|
6070
|
+
'analyticalDashboardTitle'?: string;
|
|
6071
|
+
}
|
|
6072
|
+
export type JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
6073
|
+
export type JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
6074
|
+
export interface JsonApiKnowledgeRecommendationPatchDocument {
|
|
6075
|
+
'data': JsonApiKnowledgeRecommendationPatch;
|
|
6076
|
+
}
|
|
6077
|
+
/**
|
|
6078
|
+
* JSON:API representation of knowledgeRecommendation entity.
|
|
6079
|
+
*/
|
|
6080
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalId {
|
|
6081
|
+
/**
|
|
6082
|
+
* Object type
|
|
6083
|
+
*/
|
|
6084
|
+
'type': JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum;
|
|
6085
|
+
/**
|
|
6086
|
+
* API identifier of an object
|
|
6087
|
+
*/
|
|
6088
|
+
'id'?: string;
|
|
6089
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
6090
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
6091
|
+
}
|
|
6092
|
+
export type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
6093
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes {
|
|
6009
6094
|
/**
|
|
6010
6095
|
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
6011
6096
|
*/
|
|
@@ -6023,11 +6108,11 @@ export interface JsonApiKnowledgeRecommendationOutAttributes {
|
|
|
6023
6108
|
/**
|
|
6024
6109
|
* Direction of the metric change
|
|
6025
6110
|
*/
|
|
6026
|
-
'direction':
|
|
6111
|
+
'direction': JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum;
|
|
6027
6112
|
/**
|
|
6028
6113
|
* Time period for comparison
|
|
6029
6114
|
*/
|
|
6030
|
-
'comparisonType':
|
|
6115
|
+
'comparisonType': JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum;
|
|
6031
6116
|
/**
|
|
6032
6117
|
* ID of the widget where the anomaly was detected
|
|
6033
6118
|
*/
|
|
@@ -6068,160 +6153,19 @@ export interface JsonApiKnowledgeRecommendationOutAttributes {
|
|
|
6068
6153
|
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
6069
6154
|
*/
|
|
6070
6155
|
'analyticalDashboardTitle'?: string;
|
|
6071
|
-
'createdAt'?: string;
|
|
6072
6156
|
}
|
|
6073
|
-
export type
|
|
6074
|
-
export type
|
|
6075
|
-
export interface
|
|
6076
|
-
'data':
|
|
6077
|
-
'links'?: ObjectLinks;
|
|
6078
|
-
/**
|
|
6079
|
-
* Included resources
|
|
6080
|
-
*/
|
|
6081
|
-
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
6082
|
-
}
|
|
6083
|
-
/**
|
|
6084
|
-
* @type JsonApiKnowledgeRecommendationOutIncludes
|
|
6085
|
-
*/
|
|
6086
|
-
export type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiMetricOutWithLinks;
|
|
6087
|
-
/**
|
|
6088
|
-
* A JSON:API document with a list of resources
|
|
6089
|
-
*/
|
|
6090
|
-
export interface JsonApiKnowledgeRecommendationOutList {
|
|
6091
|
-
'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
|
|
6092
|
-
'links'?: ListLinks;
|
|
6093
|
-
'meta'?: JsonApiApiTokenOutListMeta;
|
|
6094
|
-
/**
|
|
6095
|
-
* Included resources
|
|
6096
|
-
*/
|
|
6097
|
-
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
6157
|
+
export type JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
6158
|
+
export type JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
6159
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
6160
|
+
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
6098
6161
|
}
|
|
6099
|
-
export interface
|
|
6100
|
-
'metric'
|
|
6101
|
-
'analyticalDashboard'?:
|
|
6162
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
6163
|
+
'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6164
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6102
6165
|
}
|
|
6103
|
-
export interface
|
|
6166
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
6104
6167
|
'data': JsonApiMetricLinkage | null;
|
|
6105
6168
|
}
|
|
6106
|
-
export interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
6107
|
-
/**
|
|
6108
|
-
* Object type
|
|
6109
|
-
*/
|
|
6110
|
-
'type': JsonApiKnowledgeRecommendationOutWithLinksTypeEnum;
|
|
6111
|
-
/**
|
|
6112
|
-
* API identifier of an object
|
|
6113
|
-
*/
|
|
6114
|
-
'id': string;
|
|
6115
|
-
'meta'?: JsonApiFactOutMeta;
|
|
6116
|
-
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
6117
|
-
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
6118
|
-
'links'?: ObjectLinks;
|
|
6119
|
-
}
|
|
6120
|
-
export type JsonApiKnowledgeRecommendationOutWithLinksTypeEnum = 'knowledgeRecommendation';
|
|
6121
|
-
/**
|
|
6122
|
-
* JSON:API representation of patching knowledgeRecommendation entity.
|
|
6123
|
-
*/
|
|
6124
|
-
export interface JsonApiKnowledgeRecommendationPatch {
|
|
6125
|
-
/**
|
|
6126
|
-
* Object type
|
|
6127
|
-
*/
|
|
6128
|
-
'type': JsonApiKnowledgeRecommendationPatchTypeEnum;
|
|
6129
|
-
/**
|
|
6130
|
-
* API identifier of an object
|
|
6131
|
-
*/
|
|
6132
|
-
'id': string;
|
|
6133
|
-
'attributes': JsonApiKnowledgeRecommendationPatchAttributes;
|
|
6134
|
-
'relationships': JsonApiKnowledgeRecommendationOutRelationships;
|
|
6135
|
-
}
|
|
6136
|
-
export type JsonApiKnowledgeRecommendationPatchTypeEnum = 'knowledgeRecommendation';
|
|
6137
|
-
export interface JsonApiKnowledgeRecommendationPatchAttributes {
|
|
6138
|
-
/**
|
|
6139
|
-
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
6140
|
-
*/
|
|
6141
|
-
'title'?: string;
|
|
6142
|
-
/**
|
|
6143
|
-
* Description of the recommendation
|
|
6144
|
-
*/
|
|
6145
|
-
'description'?: string;
|
|
6146
|
-
'tags'?: Array<string>;
|
|
6147
|
-
'areRelationsValid'?: boolean;
|
|
6148
|
-
/**
|
|
6149
|
-
* Human-readable title of the metric (denormalized for display)
|
|
6150
|
-
*/
|
|
6151
|
-
'metricTitle'?: string;
|
|
6152
|
-
/**
|
|
6153
|
-
* Direction of the metric change
|
|
6154
|
-
*/
|
|
6155
|
-
'direction'?: JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum;
|
|
6156
|
-
/**
|
|
6157
|
-
* Time period for comparison
|
|
6158
|
-
*/
|
|
6159
|
-
'comparisonType'?: JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum;
|
|
6160
|
-
/**
|
|
6161
|
-
* ID of the widget where the anomaly was detected
|
|
6162
|
-
*/
|
|
6163
|
-
'widgetId'?: string;
|
|
6164
|
-
/**
|
|
6165
|
-
* Name of the widget where the anomaly was detected
|
|
6166
|
-
*/
|
|
6167
|
-
'widgetName'?: string;
|
|
6168
|
-
/**
|
|
6169
|
-
* Confidence score (0.0 to 1.0)
|
|
6170
|
-
*/
|
|
6171
|
-
'confidence'?: any;
|
|
6172
|
-
/**
|
|
6173
|
-
* Structured recommendations data as JSON
|
|
6174
|
-
*/
|
|
6175
|
-
'recommendations'?: object;
|
|
6176
|
-
/**
|
|
6177
|
-
* Number of source documents used for generation
|
|
6178
|
-
*/
|
|
6179
|
-
'sourceCount'?: number;
|
|
6180
|
-
/**
|
|
6181
|
-
* Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
|
|
6182
|
-
*/
|
|
6183
|
-
'referencePeriod'?: string;
|
|
6184
|
-
/**
|
|
6185
|
-
* Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
|
|
6186
|
-
*/
|
|
6187
|
-
'analyzedPeriod'?: string;
|
|
6188
|
-
/**
|
|
6189
|
-
* Metric value in the reference period
|
|
6190
|
-
*/
|
|
6191
|
-
'referenceValue'?: any;
|
|
6192
|
-
/**
|
|
6193
|
-
* Metric value in the analyzed period (the observed value that triggered the anomaly)
|
|
6194
|
-
*/
|
|
6195
|
-
'analyzedValue'?: any;
|
|
6196
|
-
/**
|
|
6197
|
-
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
6198
|
-
*/
|
|
6199
|
-
'analyticalDashboardTitle'?: string;
|
|
6200
|
-
}
|
|
6201
|
-
export type JsonApiKnowledgeRecommendationPatchAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
6202
|
-
export type JsonApiKnowledgeRecommendationPatchAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
6203
|
-
export interface JsonApiKnowledgeRecommendationPatchDocument {
|
|
6204
|
-
'data': JsonApiKnowledgeRecommendationPatch;
|
|
6205
|
-
}
|
|
6206
|
-
/**
|
|
6207
|
-
* JSON:API representation of knowledgeRecommendation entity.
|
|
6208
|
-
*/
|
|
6209
|
-
export interface JsonApiKnowledgeRecommendationPostOptionalId {
|
|
6210
|
-
/**
|
|
6211
|
-
* Object type
|
|
6212
|
-
*/
|
|
6213
|
-
'type': JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum;
|
|
6214
|
-
/**
|
|
6215
|
-
* API identifier of an object
|
|
6216
|
-
*/
|
|
6217
|
-
'id'?: string;
|
|
6218
|
-
'attributes': JsonApiKnowledgeRecommendationInAttributes;
|
|
6219
|
-
'relationships': JsonApiKnowledgeRecommendationInRelationships;
|
|
6220
|
-
}
|
|
6221
|
-
export type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
6222
|
-
export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
6223
|
-
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
6224
|
-
}
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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'?:
|
|
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
|
-
*
|
|
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
|
/**
|
|
@@ -6504,28 +6455,10 @@ export interface JsonApiLlmProviderIn {
|
|
|
6504
6455
|
* API identifier of an object
|
|
6505
6456
|
*/
|
|
6506
6457
|
'id': string;
|
|
6507
|
-
'attributes'?:
|
|
6458
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6508
6459
|
}
|
|
6509
6460
|
export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
6510
|
-
export interface
|
|
6511
|
-
'data': JsonApiLlmProviderIn;
|
|
6512
|
-
}
|
|
6513
|
-
/**
|
|
6514
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
6515
|
-
*/
|
|
6516
|
-
export interface JsonApiLlmProviderOut {
|
|
6517
|
-
/**
|
|
6518
|
-
* Object type
|
|
6519
|
-
*/
|
|
6520
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6521
|
-
/**
|
|
6522
|
-
* API identifier of an object
|
|
6523
|
-
*/
|
|
6524
|
-
'id': string;
|
|
6525
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
6526
|
-
}
|
|
6527
|
-
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6528
|
-
export interface JsonApiLlmProviderOutAttributes {
|
|
6461
|
+
export interface JsonApiLlmProviderInAttributes {
|
|
6529
6462
|
'name'?: string | null;
|
|
6530
6463
|
/**
|
|
6531
6464
|
* Description of the LLM Provider.
|
|
@@ -6535,16 +6468,16 @@ export interface JsonApiLlmProviderOutAttributes {
|
|
|
6535
6468
|
* Required ID of the default model to use from the models list.
|
|
6536
6469
|
*/
|
|
6537
6470
|
'defaultModelId'?: string | null;
|
|
6538
|
-
'providerConfig'?:
|
|
6471
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
6539
6472
|
/**
|
|
6540
6473
|
* List of LLM models available for this provider.
|
|
6541
6474
|
*/
|
|
6542
|
-
'models'?: Array<
|
|
6475
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
6543
6476
|
}
|
|
6544
6477
|
/**
|
|
6545
6478
|
* LLM Model configuration (id, family) within a provider.
|
|
6546
6479
|
*/
|
|
6547
|
-
export interface
|
|
6480
|
+
export interface JsonApiLlmProviderInAttributesModelsInner {
|
|
6548
6481
|
/**
|
|
6549
6482
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
6550
6483
|
*/
|
|
@@ -6552,14 +6485,32 @@ export interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
6552
6485
|
/**
|
|
6553
6486
|
* Family of LLM models.
|
|
6554
6487
|
*/
|
|
6555
|
-
'family':
|
|
6488
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
6556
6489
|
}
|
|
6557
|
-
export type
|
|
6490
|
+
export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
6558
6491
|
/**
|
|
6559
|
-
* @type
|
|
6492
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
6560
6493
|
* Provider-specific configuration including authentication.
|
|
6561
6494
|
*/
|
|
6562
|
-
export type
|
|
6495
|
+
export type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
6496
|
+
export interface JsonApiLlmProviderInDocument {
|
|
6497
|
+
'data': JsonApiLlmProviderIn;
|
|
6498
|
+
}
|
|
6499
|
+
/**
|
|
6500
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
6501
|
+
*/
|
|
6502
|
+
export interface JsonApiLlmProviderOut {
|
|
6503
|
+
/**
|
|
6504
|
+
* Object type
|
|
6505
|
+
*/
|
|
6506
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6507
|
+
/**
|
|
6508
|
+
* API identifier of an object
|
|
6509
|
+
*/
|
|
6510
|
+
'id': string;
|
|
6511
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6512
|
+
}
|
|
6513
|
+
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6563
6514
|
export interface JsonApiLlmProviderOutDocument {
|
|
6564
6515
|
'data': JsonApiLlmProviderOut;
|
|
6565
6516
|
'links'?: ObjectLinks;
|
|
@@ -6570,7 +6521,7 @@ export interface JsonApiLlmProviderOutDocument {
|
|
|
6570
6521
|
export interface JsonApiLlmProviderOutList {
|
|
6571
6522
|
'data': Array<JsonApiLlmProviderOutWithLinks>;
|
|
6572
6523
|
'links'?: ListLinks;
|
|
6573
|
-
'meta'?:
|
|
6524
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
6574
6525
|
}
|
|
6575
6526
|
export interface JsonApiLlmProviderOutWithLinks {
|
|
6576
6527
|
/**
|
|
@@ -6581,7 +6532,7 @@ export interface JsonApiLlmProviderOutWithLinks {
|
|
|
6581
6532
|
* API identifier of an object
|
|
6582
6533
|
*/
|
|
6583
6534
|
'id': string;
|
|
6584
|
-
'attributes'?:
|
|
6535
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6585
6536
|
'links'?: ObjectLinks;
|
|
6586
6537
|
}
|
|
6587
6538
|
export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
|
|
@@ -6597,7 +6548,7 @@ export interface JsonApiLlmProviderPatch {
|
|
|
6597
6548
|
* API identifier of an object
|
|
6598
6549
|
*/
|
|
6599
6550
|
'id': string;
|
|
6600
|
-
'attributes'?:
|
|
6551
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6601
6552
|
}
|
|
6602
6553
|
export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
|
|
6603
6554
|
export interface JsonApiLlmProviderPatchDocument {
|
|
@@ -6615,32 +6566,9 @@ export interface JsonApiMemoryItemIn {
|
|
|
6615
6566
|
* API identifier of an object
|
|
6616
6567
|
*/
|
|
6617
6568
|
'id': string;
|
|
6618
|
-
'attributes':
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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':
|
|
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'?:
|
|
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<
|
|
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'?:
|
|
6843
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
6889
6844
|
/**
|
|
6890
6845
|
* Included resources
|
|
6891
6846
|
*/
|
|
6892
|
-
'included'?: Array<
|
|
6847
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
6893
6848
|
}
|
|
6894
6849
|
export interface JsonApiMetricOutRelationships {
|
|
6895
|
-
'createdBy'?:
|
|
6896
|
-
'modifiedBy'?:
|
|
6897
|
-
'certifiedBy'?:
|
|
6898
|
-
'facts'?:
|
|
6899
|
-
'attributes'?:
|
|
6900
|
-
'labels'?:
|
|
6901
|
-
'metrics'?:
|
|
6902
|
-
'datasets'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
7092
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
7165
7093
|
}
|
|
7166
7094
|
export type JsonApiNotificationChannelPatchTypeEnum = 'notificationChannel';
|
|
7167
|
-
export interface
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
7191
|
-
}
|
|
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;
|
|
7136
|
+
'inPlatformNotification'?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
7211
7137
|
}
|
|
7212
|
-
export type
|
|
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'?:
|
|
7229
|
-
'relationships'?:
|
|
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'?:
|
|
7301
|
-
'bootstrapUserGroup'?:
|
|
7302
|
-
'identityProvider'?:
|
|
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'?:
|
|
7317
|
-
'relationships'?:
|
|
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'?:
|
|
7320
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
7387
7321
|
}
|
|
7388
7322
|
export interface JsonApiOrganizationSettingOutWithLinks {
|
|
7389
7323
|
/**
|
|
@@ -7428,7 +7362,7 @@ export interface JsonApiThemeIn {
|
|
|
7428
7362
|
* API identifier of an object
|
|
7429
7363
|
*/
|
|
7430
7364
|
'id': string;
|
|
7431
|
-
'attributes':
|
|
7365
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7432
7366
|
}
|
|
7433
7367
|
export type JsonApiThemeInTypeEnum = 'theme';
|
|
7434
7368
|
export interface JsonApiThemeInDocument {
|
|
@@ -7446,7 +7380,7 @@ export interface JsonApiThemeOut {
|
|
|
7446
7380
|
* API identifier of an object
|
|
7447
7381
|
*/
|
|
7448
7382
|
'id': string;
|
|
7449
|
-
'attributes':
|
|
7383
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7450
7384
|
}
|
|
7451
7385
|
export type JsonApiThemeOutTypeEnum = 'theme';
|
|
7452
7386
|
export interface JsonApiThemeOutDocument {
|
|
@@ -7459,7 +7393,7 @@ export interface JsonApiThemeOutDocument {
|
|
|
7459
7393
|
export interface JsonApiThemeOutList {
|
|
7460
7394
|
'data': Array<JsonApiThemeOutWithLinks>;
|
|
7461
7395
|
'links'?: ListLinks;
|
|
7462
|
-
'meta'?:
|
|
7396
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
7463
7397
|
}
|
|
7464
7398
|
export interface JsonApiThemeOutWithLinks {
|
|
7465
7399
|
/**
|
|
@@ -7470,7 +7404,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
7470
7404
|
* API identifier of an object
|
|
7471
7405
|
*/
|
|
7472
7406
|
'id': string;
|
|
7473
|
-
'attributes':
|
|
7407
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
7474
7408
|
'links'?: ObjectLinks;
|
|
7475
7409
|
}
|
|
7476
7410
|
export type JsonApiThemeOutWithLinksTypeEnum = 'theme';
|
|
@@ -7523,7 +7457,7 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7523
7457
|
* API identifier of an object
|
|
7524
7458
|
*/
|
|
7525
7459
|
'id': string;
|
|
7526
|
-
'meta'?:
|
|
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'?:
|
|
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'?:
|
|
7557
|
-
'userGroup'?:
|
|
7558
|
-
'facts'?:
|
|
7559
|
-
'attributes'?:
|
|
7560
|
-
'labels'?:
|
|
7561
|
-
'metrics'?:
|
|
7562
|
-
'datasets'?:
|
|
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'?:
|
|
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'?:
|
|
7633
|
-
'userGroup'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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':
|
|
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'?:
|
|
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<
|
|
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'?:
|
|
7990
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
8075
7991
|
/**
|
|
8076
7992
|
* Included resources
|
|
8077
7993
|
*/
|
|
8078
|
-
'included'?: Array<
|
|
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'?:
|
|
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':
|
|
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'?:
|
|
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'?:
|
|
8177
|
-
'alert'?:
|
|
8178
|
-
'tabularExports'?: Array<
|
|
8179
|
-
'visualExports'?: Array<
|
|
8180
|
-
'imageExports'?: Array<
|
|
8181
|
-
'rawExports'?: Array<
|
|
8182
|
-
'slidesExports'?: Array<
|
|
8183
|
-
'dashboardTabularExports'?: Array<
|
|
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<
|
|
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'?:
|
|
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'?:
|
|
8212
|
-
'analyticalDashboard'?:
|
|
8213
|
-
'createdBy'?:
|
|
8214
|
-
'modifiedBy'?:
|
|
8215
|
-
'exportDefinitions'?:
|
|
8216
|
-
'recipients'?:
|
|
8217
|
-
'automationResults'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
8332
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8321
8333
|
'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
8322
8334
|
'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
8323
8335
|
'links'?: ObjectLinks;
|
|
@@ -8354,13 +8366,24 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8354
8366
|
* API identifier of an object
|
|
8355
8367
|
*/
|
|
8356
8368
|
'id': string;
|
|
8357
|
-
'attributes'?:
|
|
8358
|
-
'relationships'?:
|
|
8369
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8370
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8359
8371
|
}
|
|
8360
8372
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
8373
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8374
|
+
'title'?: string;
|
|
8375
|
+
'description'?: string;
|
|
8376
|
+
'filterValues'?: Array<string>;
|
|
8377
|
+
}
|
|
8361
8378
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8362
8379
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
8363
8380
|
}
|
|
8381
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8382
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8383
|
+
}
|
|
8384
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8385
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
8386
|
+
}
|
|
8364
8387
|
/**
|
|
8365
8388
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8366
8389
|
*/
|
|
@@ -8381,16 +8404,11 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8381
8404
|
* API identifier of an object
|
|
8382
8405
|
*/
|
|
8383
8406
|
'id': string;
|
|
8384
|
-
'meta'?:
|
|
8385
|
-
'attributes'?:
|
|
8386
|
-
'relationships'?:
|
|
8407
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8408
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8409
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8387
8410
|
}
|
|
8388
8411
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
8389
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
8390
|
-
'title'?: string;
|
|
8391
|
-
'description'?: string;
|
|
8392
|
-
'filterValues'?: Array<string>;
|
|
8393
|
-
}
|
|
8394
8412
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
8395
8413
|
'data': JsonApiWorkspaceDataFilterSettingOut;
|
|
8396
8414
|
'links'?: ObjectLinks;
|
|
@@ -8405,18 +8423,12 @@ export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
8405
8423
|
export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
8406
8424
|
'data': Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
8407
8425
|
'links'?: ListLinks;
|
|
8408
|
-
'meta'?:
|
|
8426
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
8409
8427
|
/**
|
|
8410
8428
|
* Included resources
|
|
8411
8429
|
*/
|
|
8412
8430
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
8413
8431
|
}
|
|
8414
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
8415
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
8416
|
-
}
|
|
8417
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
8418
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
8419
|
-
}
|
|
8420
8432
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
8421
8433
|
/**
|
|
8422
8434
|
* Object type
|
|
@@ -8426,9 +8438,9 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8426
8438
|
* API identifier of an object
|
|
8427
8439
|
*/
|
|
8428
8440
|
'id': string;
|
|
8429
|
-
'meta'?:
|
|
8430
|
-
'attributes'?:
|
|
8431
|
-
'relationships'?:
|
|
8441
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8442
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8443
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8432
8444
|
'links'?: ObjectLinks;
|
|
8433
8445
|
}
|
|
8434
8446
|
export type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = 'workspaceDataFilterSetting';
|
|
@@ -8444,8 +8456,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8444
8456
|
* API identifier of an object
|
|
8445
8457
|
*/
|
|
8446
8458
|
'id': string;
|
|
8447
|
-
'attributes'?:
|
|
8448
|
-
'relationships'?:
|
|
8459
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8460
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8449
8461
|
}
|
|
8450
8462
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = 'workspaceDataFilterSetting';
|
|
8451
8463
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -8541,7 +8553,7 @@ export interface JsonApiWorkspaceOutDocument {
|
|
|
8541
8553
|
export interface JsonApiWorkspaceOutList {
|
|
8542
8554
|
'data': Array<JsonApiWorkspaceOutWithLinks>;
|
|
8543
8555
|
'links'?: ListLinks;
|
|
8544
|
-
'meta'?:
|
|
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'?:
|
|
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'?:
|
|
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'?:
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
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==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -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
|
*/
|