@gooddata/api-client-tiger 11.36.0-alpha.1 → 11.36.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1419 -324
- package/esm/endpoints/genAI/index.d.ts +3 -3
- package/esm/endpoints/genAI/index.js +2 -2
- package/esm/generated/afm-rest-api/api.d.ts +107 -200
- package/esm/generated/afm-rest-api/api.js +58 -118
- package/esm/generated/ai-json-api/api.d.ts +384 -18
- package/esm/generated/ai-json-api/api.js +152 -4
- package/esm/generated/metadata-json-api/api.d.ts +1517 -159
- package/esm/generated/metadata-json-api/api.js +1622 -191
- package/esm/index.d.ts +2 -2
- package/package.json +4 -4
|
@@ -59,6 +59,15 @@ export declare type AbstractMeasureValueFilter = AfmComparisonMeasureValueFilter
|
|
|
59
59
|
* @extends {BaseAPI}
|
|
60
60
|
*/
|
|
61
61
|
export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInterface {
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @summary Add targets to IP allowlist policy
|
|
65
|
+
* @param {ActionsApiAddTargetsRequest} requestParameters Request parameters.
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
* @memberof ActionsApi
|
|
69
|
+
*/
|
|
70
|
+
addTargets(requestParameters: ActionsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
62
71
|
/**
|
|
63
72
|
* Provides information about platform usage, like amount of users, workspaces, ... _NOTE_: The `admin` user is always excluded from this amount.
|
|
64
73
|
* @summary Info about the platform usage.
|
|
@@ -298,6 +307,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
298
307
|
* @memberof ActionsApi
|
|
299
308
|
*/
|
|
300
309
|
registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @summary Remove targets from IP allowlist policy
|
|
313
|
+
* @param {ActionsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
314
|
+
* @param {*} [options] Override http request option.
|
|
315
|
+
* @throws {RequiredError}
|
|
316
|
+
* @memberof ActionsApi
|
|
317
|
+
*/
|
|
318
|
+
removeTargets(requestParameters: ActionsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
301
319
|
/**
|
|
302
320
|
* Resolves values of available entitlements for the organization.
|
|
303
321
|
* @summary Values for all public entitlements.
|
|
@@ -985,6 +1003,26 @@ export declare function ActionsApi_WorkspaceResolveAllSettings(axios: AxiosInsta
|
|
|
985
1003
|
*/
|
|
986
1004
|
export declare function ActionsApi_WorkspaceResolveSettings(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiWorkspaceResolveSettingsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<Array<ResolvedSetting>>;
|
|
987
1005
|
|
|
1006
|
+
/**
|
|
1007
|
+
* Request parameters for addTargets operation in ActionsApi.
|
|
1008
|
+
* @export
|
|
1009
|
+
* @interface ActionsApiAddTargetsRequest
|
|
1010
|
+
*/
|
|
1011
|
+
export declare interface ActionsApiAddTargetsRequest {
|
|
1012
|
+
/**
|
|
1013
|
+
*
|
|
1014
|
+
* @type {string}
|
|
1015
|
+
* @memberof ActionsApiAddTargets
|
|
1016
|
+
*/
|
|
1017
|
+
readonly id: string;
|
|
1018
|
+
/**
|
|
1019
|
+
*
|
|
1020
|
+
* @type {IpAllowlistPolicyTargets}
|
|
1021
|
+
* @memberof ActionsApiAddTargets
|
|
1022
|
+
*/
|
|
1023
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
988
1026
|
/**
|
|
989
1027
|
* Request parameters for aiChatHistory operation in ActionsApi.
|
|
990
1028
|
* @export
|
|
@@ -2427,6 +2465,15 @@ export declare interface ActionsApiInheritedEntityPrefixesRequest {
|
|
|
2427
2465
|
* @interface ActionsApi
|
|
2428
2466
|
*/
|
|
2429
2467
|
export declare interface ActionsApiInterface {
|
|
2468
|
+
/**
|
|
2469
|
+
*
|
|
2470
|
+
* @summary Add targets to IP allowlist policy
|
|
2471
|
+
* @param {ActionsApiAddTargetsRequest} requestParameters Request parameters.
|
|
2472
|
+
* @param {*} [options] Override http request option.
|
|
2473
|
+
* @throws {RequiredError}
|
|
2474
|
+
* @memberof ActionsApiInterface
|
|
2475
|
+
*/
|
|
2476
|
+
addTargets(requestParameters: ActionsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2430
2477
|
/**
|
|
2431
2478
|
* Provides information about platform usage, like amount of users, workspaces, ... _NOTE_: The `admin` user is always excluded from this amount.
|
|
2432
2479
|
* @summary Info about the platform usage.
|
|
@@ -2666,6 +2713,15 @@ export declare interface ActionsApiInterface {
|
|
|
2666
2713
|
* @memberof ActionsApiInterface
|
|
2667
2714
|
*/
|
|
2668
2715
|
registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2716
|
+
/**
|
|
2717
|
+
*
|
|
2718
|
+
* @summary Remove targets from IP allowlist policy
|
|
2719
|
+
* @param {ActionsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
2720
|
+
* @param {*} [options] Override http request option.
|
|
2721
|
+
* @throws {RequiredError}
|
|
2722
|
+
* @memberof ActionsApiInterface
|
|
2723
|
+
*/
|
|
2724
|
+
removeTargets(requestParameters: ActionsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2669
2725
|
/**
|
|
2670
2726
|
* Resolves values of available entitlements for the organization.
|
|
2671
2727
|
* @summary Values for all public entitlements.
|
|
@@ -3259,6 +3315,26 @@ export declare interface ActionsApiRegisterWorkspaceUploadNotificationRequest {
|
|
|
3259
3315
|
readonly workspaceId: string;
|
|
3260
3316
|
}
|
|
3261
3317
|
|
|
3318
|
+
/**
|
|
3319
|
+
* Request parameters for removeTargets operation in ActionsApi.
|
|
3320
|
+
* @export
|
|
3321
|
+
* @interface ActionsApiRemoveTargetsRequest
|
|
3322
|
+
*/
|
|
3323
|
+
export declare interface ActionsApiRemoveTargetsRequest {
|
|
3324
|
+
/**
|
|
3325
|
+
*
|
|
3326
|
+
* @type {string}
|
|
3327
|
+
* @memberof ActionsApiRemoveTargets
|
|
3328
|
+
*/
|
|
3329
|
+
readonly id: string;
|
|
3330
|
+
/**
|
|
3331
|
+
*
|
|
3332
|
+
* @type {IpAllowlistPolicyTargets}
|
|
3333
|
+
* @memberof ActionsApiRemoveTargets
|
|
3334
|
+
*/
|
|
3335
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3262
3338
|
/**
|
|
3263
3339
|
* Request parameters for resolveAllSettingsWithoutWorkspace operation in ActionsApi.
|
|
3264
3340
|
* @export
|
|
@@ -3751,32 +3827,10 @@ declare interface ActionsApiValidateLLMEndpointByIdRequest {
|
|
|
3751
3827
|
* @memberof ActionsApiValidateLLMEndpointById
|
|
3752
3828
|
*/
|
|
3753
3829
|
readonly llmEndpointId: string;
|
|
3754
|
-
/**
|
|
3755
|
-
*
|
|
3756
|
-
* @type {ValidateLLMEndpointByIdRequest}
|
|
3757
|
-
* @memberof ActionsApiValidateLLMEndpointById
|
|
3758
|
-
*/
|
|
3759
|
-
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
3760
3830
|
}
|
|
3761
3831
|
export { ActionsApiValidateLLMEndpointByIdRequest }
|
|
3762
3832
|
export { ActionsApiValidateLLMEndpointByIdRequest as GenAiApiValidateLLMEndpointByIdRequest }
|
|
3763
3833
|
|
|
3764
|
-
/**
|
|
3765
|
-
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
3766
|
-
* @export
|
|
3767
|
-
* @interface ActionsApiValidateLLMEndpointRequest
|
|
3768
|
-
*/
|
|
3769
|
-
declare interface ActionsApiValidateLLMEndpointRequest {
|
|
3770
|
-
/**
|
|
3771
|
-
*
|
|
3772
|
-
* @type {ValidateLLMEndpointRequest}
|
|
3773
|
-
* @memberof ActionsApiValidateLLMEndpoint
|
|
3774
|
-
*/
|
|
3775
|
-
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
3776
|
-
}
|
|
3777
|
-
export { ActionsApiValidateLLMEndpointRequest }
|
|
3778
|
-
export { ActionsApiValidateLLMEndpointRequest as GenAiApiValidateLLMEndpointRequest }
|
|
3779
|
-
|
|
3780
3834
|
/**
|
|
3781
3835
|
* Request parameters for workspaceResolveAllSettings operation in ActionsApi.
|
|
3782
3836
|
* @export
|
|
@@ -5412,17 +5466,17 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5412
5466
|
*/
|
|
5413
5467
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
5414
5468
|
/**
|
|
5415
|
-
*
|
|
5416
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5469
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
5470
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
5417
5471
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5418
5472
|
* @param {*} [options] Override http request option.
|
|
5419
5473
|
* @deprecated
|
|
5420
5474
|
* @throws {RequiredError}
|
|
5421
5475
|
* @memberof ActionsApi
|
|
5422
5476
|
*/
|
|
5423
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5477
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5424
5478
|
/**
|
|
5425
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
5479
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
5426
5480
|
* @summary Get Active LLM configuration for this workspace
|
|
5427
5481
|
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
5428
5482
|
* @param {*} [options] Override http request option.
|
|
@@ -5503,25 +5557,24 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5503
5557
|
*/
|
|
5504
5558
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
5505
5559
|
/**
|
|
5506
|
-
*
|
|
5507
|
-
* @summary Validate LLM Endpoint
|
|
5508
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5560
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5561
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
5509
5562
|
* @param {*} [options] Override http request option.
|
|
5510
5563
|
* @deprecated
|
|
5511
5564
|
* @throws {RequiredError}
|
|
5512
5565
|
* @memberof ActionsApi
|
|
5513
5566
|
*/
|
|
5514
|
-
validateLLMEndpoint(
|
|
5567
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5515
5568
|
/**
|
|
5516
|
-
*
|
|
5517
|
-
* @summary Validate LLM Endpoint By Id
|
|
5569
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
5570
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
5518
5571
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5519
5572
|
* @param {*} [options] Override http request option.
|
|
5520
5573
|
* @deprecated
|
|
5521
5574
|
* @throws {RequiredError}
|
|
5522
5575
|
* @memberof ActionsApi
|
|
5523
5576
|
*/
|
|
5524
|
-
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5577
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5525
5578
|
}
|
|
5526
5579
|
|
|
5527
5580
|
/**
|
|
@@ -5867,17 +5920,17 @@ export declare interface AfmActionsApiInterface {
|
|
|
5867
5920
|
*/
|
|
5868
5921
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
5869
5922
|
/**
|
|
5870
|
-
*
|
|
5871
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5923
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
5924
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
5872
5925
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5873
5926
|
* @param {*} [options] Override http request option.
|
|
5874
5927
|
* @deprecated
|
|
5875
5928
|
* @throws {RequiredError}
|
|
5876
5929
|
* @memberof ActionsApiInterface
|
|
5877
5930
|
*/
|
|
5878
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5931
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5879
5932
|
/**
|
|
5880
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
5933
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
5881
5934
|
* @summary Get Active LLM configuration for this workspace
|
|
5882
5935
|
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
5883
5936
|
* @param {*} [options] Override http request option.
|
|
@@ -5958,25 +6011,24 @@ export declare interface AfmActionsApiInterface {
|
|
|
5958
6011
|
*/
|
|
5959
6012
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
5960
6013
|
/**
|
|
5961
|
-
*
|
|
5962
|
-
* @summary Validate LLM Endpoint
|
|
5963
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6014
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6015
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
5964
6016
|
* @param {*} [options] Override http request option.
|
|
5965
6017
|
* @deprecated
|
|
5966
6018
|
* @throws {RequiredError}
|
|
5967
6019
|
* @memberof ActionsApiInterface
|
|
5968
6020
|
*/
|
|
5969
|
-
validateLLMEndpoint(
|
|
6021
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5970
6022
|
/**
|
|
5971
|
-
*
|
|
5972
|
-
* @summary Validate LLM Endpoint By Id
|
|
6023
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
6024
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
5973
6025
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5974
6026
|
* @param {*} [options] Override http request option.
|
|
5975
6027
|
* @deprecated
|
|
5976
6028
|
* @throws {RequiredError}
|
|
5977
6029
|
* @memberof ActionsApiInterface
|
|
5978
6030
|
*/
|
|
5979
|
-
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6031
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5980
6032
|
}
|
|
5981
6033
|
|
|
5982
6034
|
/**
|
|
@@ -6051,6 +6103,36 @@ export declare interface AfmAnalyticsCatalogUser {
|
|
|
6051
6103
|
'lastname': string;
|
|
6052
6104
|
}
|
|
6053
6105
|
|
|
6106
|
+
export declare interface AfmAnthropicApiKeyAuth {
|
|
6107
|
+
/**
|
|
6108
|
+
* Anthropic API key.
|
|
6109
|
+
*/
|
|
6110
|
+
'apiKey'?: string | null;
|
|
6111
|
+
/**
|
|
6112
|
+
* Authentication type.
|
|
6113
|
+
*/
|
|
6114
|
+
'type': AfmAnthropicApiKeyAuthTypeEnum;
|
|
6115
|
+
}
|
|
6116
|
+
|
|
6117
|
+
export declare type AfmAnthropicApiKeyAuthTypeEnum = 'API_KEY';
|
|
6118
|
+
|
|
6119
|
+
/**
|
|
6120
|
+
* Configuration for Anthropic provider.
|
|
6121
|
+
*/
|
|
6122
|
+
export declare interface AfmAnthropicProviderConfig {
|
|
6123
|
+
/**
|
|
6124
|
+
* Custom base URL for the Anthropic API. Defaults to the official endpoint; override only for enterprise proxies or compatible gateways.
|
|
6125
|
+
*/
|
|
6126
|
+
'baseUrl'?: string;
|
|
6127
|
+
'auth': AfmAnthropicApiKeyAuth;
|
|
6128
|
+
/**
|
|
6129
|
+
* Provider type.
|
|
6130
|
+
*/
|
|
6131
|
+
'type': AfmAnthropicProviderConfigTypeEnum;
|
|
6132
|
+
}
|
|
6133
|
+
|
|
6134
|
+
export declare type AfmAnthropicProviderConfigTypeEnum = 'ANTHROPIC';
|
|
6135
|
+
|
|
6054
6136
|
/**
|
|
6055
6137
|
* Metric representing arithmetics between other metrics.
|
|
6056
6138
|
*/
|
|
@@ -7909,12 +7991,44 @@ export declare interface AggregatedFactControllerApiSearchEntitiesAggregatedFact
|
|
|
7909
7991
|
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
7910
7992
|
}
|
|
7911
7993
|
|
|
7994
|
+
export declare interface AiAbsoluteDateFilter {
|
|
7995
|
+
'absoluteDateFilter': AiAbsoluteDateFilterBody;
|
|
7996
|
+
}
|
|
7997
|
+
|
|
7998
|
+
export declare interface AiAbsoluteDateFilterBody {
|
|
7999
|
+
'dataset': AiAfmObjectIdentifier;
|
|
8000
|
+
'from': string;
|
|
8001
|
+
'to': string;
|
|
8002
|
+
'applyOnResult'?: boolean | null;
|
|
8003
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
8004
|
+
'localIdentifier'?: string | null;
|
|
8005
|
+
}
|
|
8006
|
+
|
|
7912
8007
|
export declare interface AiActiveObjectIdentification {
|
|
7913
8008
|
'id': string;
|
|
7914
8009
|
'type': string;
|
|
7915
8010
|
'workspaceId': string;
|
|
7916
8011
|
}
|
|
7917
8012
|
|
|
8013
|
+
/**
|
|
8014
|
+
* Local reference: ``{\"localIdentifier\": \"...\"}``.
|
|
8015
|
+
*/
|
|
8016
|
+
export declare interface AiAfmLocalIdentifier {
|
|
8017
|
+
'localIdentifier': string;
|
|
8018
|
+
}
|
|
8019
|
+
|
|
8020
|
+
/**
|
|
8021
|
+
* MD object reference: ``{\"identifier\": {\"id\": \"...\", \"type\": \"...\"}}``.
|
|
8022
|
+
*/
|
|
8023
|
+
export declare interface AiAfmObjectIdentifier {
|
|
8024
|
+
'identifier': AiAfmObjectIdentifierBody;
|
|
8025
|
+
}
|
|
8026
|
+
|
|
8027
|
+
export declare interface AiAfmObjectIdentifierBody {
|
|
8028
|
+
'id': string;
|
|
8029
|
+
'type': string;
|
|
8030
|
+
}
|
|
8031
|
+
|
|
7918
8032
|
/**
|
|
7919
8033
|
* AIAgentsApi - object-oriented interface
|
|
7920
8034
|
* @export
|
|
@@ -8360,6 +8474,30 @@ export declare interface AiAllowedRelationshipType {
|
|
|
8360
8474
|
'allowOrphans'?: boolean;
|
|
8361
8475
|
}
|
|
8362
8476
|
|
|
8477
|
+
export declare interface AiAllTimeDateFilterBodyInput {
|
|
8478
|
+
'dataset': AiAfmObjectIdentifier;
|
|
8479
|
+
'granularity'?: AiDateGranularityInput | null;
|
|
8480
|
+
'applyOnResult'?: boolean | null;
|
|
8481
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
8482
|
+
'localIdentifier'?: string | null;
|
|
8483
|
+
}
|
|
8484
|
+
|
|
8485
|
+
export declare interface AiAllTimeDateFilterBodyOutput {
|
|
8486
|
+
'dataset': AiAfmObjectIdentifier;
|
|
8487
|
+
'granularity'?: AiAppApplicationDtosAfmFilterDefinitionDateGranularity | null;
|
|
8488
|
+
'applyOnResult'?: boolean | null;
|
|
8489
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
8490
|
+
'localIdentifier'?: string | null;
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8493
|
+
export declare interface AiAllTimeDateFilterInput {
|
|
8494
|
+
'allTimeDateFilter': AiAllTimeDateFilterBodyInput;
|
|
8495
|
+
}
|
|
8496
|
+
|
|
8497
|
+
export declare interface AiAllTimeDateFilterOutput {
|
|
8498
|
+
'allTimeDateFilter': AiAllTimeDateFilterBodyOutput;
|
|
8499
|
+
}
|
|
8500
|
+
|
|
8363
8501
|
/**
|
|
8364
8502
|
* AIApi - object-oriented interface
|
|
8365
8503
|
* @export
|
|
@@ -9615,12 +9753,67 @@ export declare interface AIApiUpdateEntityMemoryItemsRequest {
|
|
|
9615
9753
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
9616
9754
|
}
|
|
9617
9755
|
|
|
9756
|
+
export declare const AiAppApplicationDtosAfmFilterDefinitionDateGranularity: {
|
|
9757
|
+
readonly MINUTE: "MINUTE";
|
|
9758
|
+
readonly HOUR: "HOUR";
|
|
9759
|
+
readonly DAY: "DAY";
|
|
9760
|
+
readonly WEEK: "WEEK";
|
|
9761
|
+
readonly MONTH: "MONTH";
|
|
9762
|
+
readonly QUARTER: "QUARTER";
|
|
9763
|
+
readonly YEAR: "YEAR";
|
|
9764
|
+
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
9765
|
+
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
9766
|
+
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
9767
|
+
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
9768
|
+
readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
|
|
9769
|
+
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
9770
|
+
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
9771
|
+
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
9772
|
+
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
9773
|
+
readonly FISCAL_MONTH: "FISCAL_MONTH";
|
|
9774
|
+
readonly FISCAL_QUARTER: "FISCAL_QUARTER";
|
|
9775
|
+
readonly FISCAL_YEAR: "FISCAL_YEAR";
|
|
9776
|
+
};
|
|
9777
|
+
|
|
9778
|
+
export declare type AiAppApplicationDtosAfmFilterDefinitionDateGranularity = typeof AiAppApplicationDtosAfmFilterDefinitionDateGranularity[keyof typeof AiAppApplicationDtosAfmFilterDefinitionDateGranularity];
|
|
9779
|
+
|
|
9780
|
+
export declare interface AiAppApplicationDtosAfmFilterDefinitionRankingFilter {
|
|
9781
|
+
'rankingFilter': AiRankingFilterBody;
|
|
9782
|
+
}
|
|
9783
|
+
|
|
9784
|
+
/**
|
|
9785
|
+
* Date granularity for date filters.
|
|
9786
|
+
*/
|
|
9787
|
+
export declare const AiAppDomainConversationsVisualizationDateGranularity: {
|
|
9788
|
+
readonly DAY: "DAY";
|
|
9789
|
+
readonly WEEK_US: "WEEK_US";
|
|
9790
|
+
readonly MONTH: "MONTH";
|
|
9791
|
+
readonly QUARTER: "QUARTER";
|
|
9792
|
+
readonly YEAR: "YEAR";
|
|
9793
|
+
};
|
|
9794
|
+
|
|
9795
|
+
export declare type AiAppDomainConversationsVisualizationDateGranularity = typeof AiAppDomainConversationsVisualizationDateGranularity[keyof typeof AiAppDomainConversationsVisualizationDateGranularity];
|
|
9796
|
+
|
|
9797
|
+
export declare interface AiAppDomainConversationsVisualizationRankingFilter {
|
|
9798
|
+
'type': AiAppDomainConversationsVisualizationRankingFilterTypeEnum;
|
|
9799
|
+
'using': string;
|
|
9800
|
+
'attribute'?: string;
|
|
9801
|
+
'top'?: number;
|
|
9802
|
+
'bottom'?: number;
|
|
9803
|
+
}
|
|
9804
|
+
|
|
9805
|
+
export declare type AiAppDomainConversationsVisualizationRankingFilterTypeEnum = 'ranking_filter';
|
|
9806
|
+
|
|
9618
9807
|
export declare interface AiAttributeFilter {
|
|
9619
9808
|
'type': AiAttributeFilterTypeEnum;
|
|
9620
9809
|
'using': string;
|
|
9621
9810
|
'state': AiAttributeFilterState;
|
|
9622
9811
|
}
|
|
9623
9812
|
|
|
9813
|
+
export declare interface AiAttributeFilterElements {
|
|
9814
|
+
'values': Array<string | null>;
|
|
9815
|
+
}
|
|
9816
|
+
|
|
9624
9817
|
export declare interface AiAttributeFilterState {
|
|
9625
9818
|
'include'?: Array<string>;
|
|
9626
9819
|
'exclude'?: Array<string>;
|
|
@@ -9648,6 +9841,18 @@ export declare class AiBaseAPI {
|
|
|
9648
9841
|
constructor(configuration?: AiConfiguration, basePath?: string, axios?: AxiosInstance);
|
|
9649
9842
|
}
|
|
9650
9843
|
|
|
9844
|
+
export declare interface AiBoundedFilterInput {
|
|
9845
|
+
'granularity': AiDateGranularityInput;
|
|
9846
|
+
'from'?: number | null;
|
|
9847
|
+
'to'?: number | null;
|
|
9848
|
+
}
|
|
9849
|
+
|
|
9850
|
+
export declare interface AiBoundedFilterOutput {
|
|
9851
|
+
'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
|
|
9852
|
+
'from'?: number | null;
|
|
9853
|
+
'to'?: number | null;
|
|
9854
|
+
}
|
|
9855
|
+
|
|
9651
9856
|
export declare interface AiBucketRefObject {
|
|
9652
9857
|
'field': string;
|
|
9653
9858
|
}
|
|
@@ -9655,6 +9860,54 @@ export declare interface AiBucketRefObject {
|
|
|
9655
9860
|
export declare interface AiClusteringAmount {
|
|
9656
9861
|
}
|
|
9657
9862
|
|
|
9863
|
+
export declare interface AiComparisonMeasureValueFilter {
|
|
9864
|
+
'comparisonMeasureValueFilter': AiComparisonMeasureValueFilterBody;
|
|
9865
|
+
}
|
|
9866
|
+
|
|
9867
|
+
export declare interface AiComparisonMeasureValueFilterBody {
|
|
9868
|
+
'measure': AiMeasure;
|
|
9869
|
+
'operator': AiComparisonMeasureValueOperator;
|
|
9870
|
+
'value': number;
|
|
9871
|
+
'treatNullValuesAs'?: number | null;
|
|
9872
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
9873
|
+
'applyOnResult'?: boolean | null;
|
|
9874
|
+
'localIdentifier'?: string | null;
|
|
9875
|
+
}
|
|
9876
|
+
|
|
9877
|
+
export declare interface AiComparisonMeasureValueFilterBodyDimensionalityInner {
|
|
9878
|
+
'identifier': AiAfmObjectIdentifierBody;
|
|
9879
|
+
'localIdentifier': string;
|
|
9880
|
+
}
|
|
9881
|
+
|
|
9882
|
+
export declare const AiComparisonMeasureValueOperator: {
|
|
9883
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
9884
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
9885
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
9886
|
+
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
9887
|
+
readonly EQUAL_TO: "EQUAL_TO";
|
|
9888
|
+
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
9889
|
+
};
|
|
9890
|
+
|
|
9891
|
+
export declare type AiComparisonMeasureValueOperator = typeof AiComparisonMeasureValueOperator[keyof typeof AiComparisonMeasureValueOperator];
|
|
9892
|
+
|
|
9893
|
+
export declare interface AiCompoundMeasureValueFilter {
|
|
9894
|
+
'compoundMeasureValueFilter': AiCompoundMeasureValueFilterBody;
|
|
9895
|
+
}
|
|
9896
|
+
|
|
9897
|
+
export declare interface AiCompoundMeasureValueFilterBody {
|
|
9898
|
+
'measure': AiMeasure;
|
|
9899
|
+
'conditions': Array<AiCompoundMeasureValueFilterBodyConditionsInner>;
|
|
9900
|
+
'treatNullValuesAs'?: number | null;
|
|
9901
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
9902
|
+
'applyOnResult'?: boolean | null;
|
|
9903
|
+
'localIdentifier'?: string | null;
|
|
9904
|
+
}
|
|
9905
|
+
|
|
9906
|
+
export declare interface AiCompoundMeasureValueFilterBodyConditionsInner {
|
|
9907
|
+
'comparison': AiMeasureValueComparisonInner;
|
|
9908
|
+
'range': AiMeasureValueRangeInner;
|
|
9909
|
+
}
|
|
9910
|
+
|
|
9658
9911
|
export declare class AiConfiguration {
|
|
9659
9912
|
/**
|
|
9660
9913
|
* parameter for apiKey security
|
|
@@ -9747,6 +10000,11 @@ export declare type AiContent = ({
|
|
|
9747
10000
|
type: 'toolResult';
|
|
9748
10001
|
} & AiFunctionResultContent);
|
|
9749
10002
|
|
|
10003
|
+
export declare interface AiConversationFeedbackRequest {
|
|
10004
|
+
'responseId': string;
|
|
10005
|
+
'feedback': AiResponseFeedback | null;
|
|
10006
|
+
}
|
|
10007
|
+
|
|
9750
10008
|
/**
|
|
9751
10009
|
* Conversation item list response.
|
|
9752
10010
|
*/
|
|
@@ -9916,25 +10174,36 @@ export declare type AiDateFilterGranularity = typeof AiDateFilterGranularity[key
|
|
|
9916
10174
|
export declare interface AiDateFilterRelative {
|
|
9917
10175
|
'type': AiDateFilterRelativeTypeEnum;
|
|
9918
10176
|
'using': string;
|
|
9919
|
-
'granularity':
|
|
10177
|
+
'granularity': AiAppDomainConversationsVisualizationDateGranularity;
|
|
9920
10178
|
'from': number;
|
|
9921
10179
|
'to': number;
|
|
9922
10180
|
}
|
|
9923
10181
|
|
|
9924
10182
|
export declare type AiDateFilterRelativeTypeEnum = 'date_filter';
|
|
9925
10183
|
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
export declare const AiDateGranularity: {
|
|
10184
|
+
export declare const AiDateGranularityInput: {
|
|
10185
|
+
readonly MINUTE: "MINUTE";
|
|
10186
|
+
readonly HOUR: "HOUR";
|
|
9930
10187
|
readonly DAY: "DAY";
|
|
9931
|
-
readonly
|
|
10188
|
+
readonly WEEK: "WEEK";
|
|
9932
10189
|
readonly MONTH: "MONTH";
|
|
9933
10190
|
readonly QUARTER: "QUARTER";
|
|
9934
10191
|
readonly YEAR: "YEAR";
|
|
10192
|
+
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
10193
|
+
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
10194
|
+
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
10195
|
+
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
10196
|
+
readonly DAY_OF_QUARTER: "DAY_OF_QUARTER";
|
|
10197
|
+
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
10198
|
+
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
10199
|
+
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
10200
|
+
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
10201
|
+
readonly FISCAL_MONTH: "FISCAL_MONTH";
|
|
10202
|
+
readonly FISCAL_QUARTER: "FISCAL_QUARTER";
|
|
10203
|
+
readonly FISCAL_YEAR: "FISCAL_YEAR";
|
|
9935
10204
|
};
|
|
9936
10205
|
|
|
9937
|
-
export declare type
|
|
10206
|
+
export declare type AiDateGranularityInput = typeof AiDateGranularityInput[keyof typeof AiDateGranularityInput];
|
|
9938
10207
|
|
|
9939
10208
|
/**
|
|
9940
10209
|
* Response for DELETE /documents/{documentId}.
|
|
@@ -9961,6 +10230,14 @@ export declare interface AiDocumentMetadataResponse {
|
|
|
9961
10230
|
'isDisabled'?: boolean | null;
|
|
9962
10231
|
}
|
|
9963
10232
|
|
|
10233
|
+
export declare const AiEmptyValueHandling: {
|
|
10234
|
+
readonly INCLUDE: "INCLUDE";
|
|
10235
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
10236
|
+
readonly ONLY: "ONLY";
|
|
10237
|
+
};
|
|
10238
|
+
|
|
10239
|
+
export declare type AiEmptyValueHandling = typeof AiEmptyValueHandling[keyof typeof AiEmptyValueHandling];
|
|
10240
|
+
|
|
9964
10241
|
export declare interface AiFeedback {
|
|
9965
10242
|
/**
|
|
9966
10243
|
* Feedback type.
|
|
@@ -9986,7 +10263,7 @@ export declare interface AiFilterByValue {
|
|
|
9986
10263
|
'state': AiAttributeFilterState;
|
|
9987
10264
|
'from': number;
|
|
9988
10265
|
'to': number;
|
|
9989
|
-
'granularity':
|
|
10266
|
+
'granularity': AiAppDomainConversationsVisualizationDateGranularity;
|
|
9990
10267
|
'attribute'?: string;
|
|
9991
10268
|
'top'?: number;
|
|
9992
10269
|
'bottom'?: number;
|
|
@@ -10052,6 +10329,16 @@ export declare interface AiHTTPValidationError {
|
|
|
10052
10329
|
'detail'?: Array<AiValidationError>;
|
|
10053
10330
|
}
|
|
10054
10331
|
|
|
10332
|
+
export declare interface AiInlineFilterDefinition {
|
|
10333
|
+
'inline': AiInlineFilterDefinitionBody;
|
|
10334
|
+
}
|
|
10335
|
+
|
|
10336
|
+
export declare interface AiInlineFilterDefinitionBody {
|
|
10337
|
+
'filter': string;
|
|
10338
|
+
'applyOnResult'?: boolean | null;
|
|
10339
|
+
'localIdentifier'?: string | null;
|
|
10340
|
+
}
|
|
10341
|
+
|
|
10055
10342
|
export declare interface AiKeyDriverAnalysis {
|
|
10056
10343
|
[key: string]: any;
|
|
10057
10344
|
/**
|
|
@@ -10102,6 +10389,11 @@ export declare interface AiKeyDriverAnalysisPart {
|
|
|
10102
10389
|
|
|
10103
10390
|
export declare type AiKeyDriverAnalysisPartTypeEnum = 'kda';
|
|
10104
10391
|
|
|
10392
|
+
export declare interface AiLabel {
|
|
10393
|
+
'identifier': AiAfmObjectIdentifierBody;
|
|
10394
|
+
'localIdentifier': string;
|
|
10395
|
+
}
|
|
10396
|
+
|
|
10105
10397
|
/**
|
|
10106
10398
|
* Response for GET /documents.
|
|
10107
10399
|
*/
|
|
@@ -10111,6 +10403,58 @@ export declare interface AiListDocumentsResponse {
|
|
|
10111
10403
|
'nextPageToken'?: string | null;
|
|
10112
10404
|
}
|
|
10113
10405
|
|
|
10406
|
+
export declare interface AiMatchAttributeFilter {
|
|
10407
|
+
'matchAttributeFilter': AiMatchAttributeFilterBody;
|
|
10408
|
+
}
|
|
10409
|
+
|
|
10410
|
+
export declare interface AiMatchAttributeFilterBody {
|
|
10411
|
+
'label': AiLabel;
|
|
10412
|
+
'literal': string;
|
|
10413
|
+
'matchType': AiMatchType;
|
|
10414
|
+
'caseSensitive'?: boolean;
|
|
10415
|
+
'negate'?: boolean;
|
|
10416
|
+
'applyOnResult'?: boolean | null;
|
|
10417
|
+
'localIdentifier'?: string | null;
|
|
10418
|
+
}
|
|
10419
|
+
|
|
10420
|
+
export declare const AiMatchType: {
|
|
10421
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
10422
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
10423
|
+
readonly CONTAINS: "CONTAINS";
|
|
10424
|
+
};
|
|
10425
|
+
|
|
10426
|
+
export declare type AiMatchType = typeof AiMatchType[keyof typeof AiMatchType];
|
|
10427
|
+
|
|
10428
|
+
export declare interface AiMeasure {
|
|
10429
|
+
'identifier': AiAfmObjectIdentifierBody;
|
|
10430
|
+
'localIdentifier': string;
|
|
10431
|
+
}
|
|
10432
|
+
|
|
10433
|
+
/**
|
|
10434
|
+
* Comparison branch of a compound measure value condition: ``{\"comparison\": {...}}``.
|
|
10435
|
+
*/
|
|
10436
|
+
export declare interface AiMeasureValueComparisonCondition {
|
|
10437
|
+
'comparison': AiMeasureValueComparisonInner;
|
|
10438
|
+
}
|
|
10439
|
+
|
|
10440
|
+
export declare interface AiMeasureValueComparisonInner {
|
|
10441
|
+
'operator': AiComparisonMeasureValueOperator;
|
|
10442
|
+
'value': number;
|
|
10443
|
+
}
|
|
10444
|
+
|
|
10445
|
+
/**
|
|
10446
|
+
* Range branch of a compound measure value condition: ``{\"range\": {...}}``.
|
|
10447
|
+
*/
|
|
10448
|
+
export declare interface AiMeasureValueRangeCondition {
|
|
10449
|
+
'range': AiMeasureValueRangeInner;
|
|
10450
|
+
}
|
|
10451
|
+
|
|
10452
|
+
export declare interface AiMeasureValueRangeInner {
|
|
10453
|
+
'operator': AiRangeMeasureValueOperator;
|
|
10454
|
+
'from': number;
|
|
10455
|
+
'to': number;
|
|
10456
|
+
}
|
|
10457
|
+
|
|
10114
10458
|
export declare interface AiMetricSortItem {
|
|
10115
10459
|
'type': AiMetricSortItemTypeEnum;
|
|
10116
10460
|
'direction': AiMetricSortItemDirectionEnum;
|
|
@@ -10179,6 +10523,18 @@ export declare type AiMultipartContentPartsInner = ({
|
|
|
10179
10523
|
|
|
10180
10524
|
export declare type AiMultipartContentTypeEnum = 'multipart';
|
|
10181
10525
|
|
|
10526
|
+
export declare interface AiNegativeAttributeFilter {
|
|
10527
|
+
'negativeAttributeFilter': AiNegativeAttributeFilterBody;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10530
|
+
export declare interface AiNegativeAttributeFilterBody {
|
|
10531
|
+
'label': AiLabel;
|
|
10532
|
+
'notIn': AiAttributeFilterElements;
|
|
10533
|
+
'applyOnResult'?: boolean | null;
|
|
10534
|
+
'localIdentifier'?: string | null;
|
|
10535
|
+
'usesArbitraryValues'?: boolean | null;
|
|
10536
|
+
}
|
|
10537
|
+
|
|
10182
10538
|
export declare const AiObjectType: {
|
|
10183
10539
|
readonly UNIDENTIFIED: "unidentified";
|
|
10184
10540
|
readonly WORKSPACE: "workspace";
|
|
@@ -10207,6 +10563,18 @@ declare interface AiPatchDocumentRequest {
|
|
|
10207
10563
|
export { AiPatchDocumentRequest }
|
|
10208
10564
|
export { AiPatchDocumentRequest as GenAiApiPatchDocumentRequestBody }
|
|
10209
10565
|
|
|
10566
|
+
export declare interface AiPositiveAttributeFilter {
|
|
10567
|
+
'positiveAttributeFilter': AiPositiveAttributeFilterBody;
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10570
|
+
export declare interface AiPositiveAttributeFilterBody {
|
|
10571
|
+
'label': AiLabel;
|
|
10572
|
+
'in': AiAttributeFilterElements;
|
|
10573
|
+
'applyOnResult'?: boolean | null;
|
|
10574
|
+
'localIdentifier'?: string | null;
|
|
10575
|
+
'usesArbitraryValues'?: boolean | null;
|
|
10576
|
+
}
|
|
10577
|
+
|
|
10210
10578
|
export declare interface AiQuery {
|
|
10211
10579
|
'fields': {
|
|
10212
10580
|
[key: string]: AiFieldsValue;
|
|
@@ -10248,15 +10616,47 @@ export declare type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
|
|
|
10248
10616
|
|
|
10249
10617
|
export declare type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
|
|
10250
10618
|
|
|
10251
|
-
export declare interface
|
|
10252
|
-
'
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
'
|
|
10619
|
+
export declare interface AiRangeMeasureValueFilter {
|
|
10620
|
+
'rangeMeasureValueFilter': AiRangeMeasureValueFilterBody;
|
|
10621
|
+
}
|
|
10622
|
+
|
|
10623
|
+
export declare interface AiRangeMeasureValueFilterBody {
|
|
10624
|
+
'measure': AiMeasure;
|
|
10625
|
+
'operator': AiRangeMeasureValueOperator;
|
|
10626
|
+
'from': number;
|
|
10627
|
+
'to': number;
|
|
10628
|
+
'treatNullValuesAs'?: number | null;
|
|
10629
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
10630
|
+
'applyOnResult'?: boolean | null;
|
|
10631
|
+
'localIdentifier'?: string | null;
|
|
10257
10632
|
}
|
|
10258
10633
|
|
|
10259
|
-
export declare
|
|
10634
|
+
export declare const AiRangeMeasureValueOperator: {
|
|
10635
|
+
readonly BETWEEN: "BETWEEN";
|
|
10636
|
+
readonly NOT_BETWEEN: "NOT_BETWEEN";
|
|
10637
|
+
};
|
|
10638
|
+
|
|
10639
|
+
export declare type AiRangeMeasureValueOperator = typeof AiRangeMeasureValueOperator[keyof typeof AiRangeMeasureValueOperator];
|
|
10640
|
+
|
|
10641
|
+
export declare interface AiRankingFilterBody {
|
|
10642
|
+
'measures': Array<AiComparisonMeasureValueFilterBodyDimensionalityInner>;
|
|
10643
|
+
'operator': AiRankingOperator;
|
|
10644
|
+
'value': number;
|
|
10645
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
10646
|
+
'applyOnResult'?: boolean | null;
|
|
10647
|
+
'localIdentifier'?: string | null;
|
|
10648
|
+
}
|
|
10649
|
+
|
|
10650
|
+
export declare interface AiRankingFilterInput {
|
|
10651
|
+
'rankingFilter': AiRankingFilterBody;
|
|
10652
|
+
}
|
|
10653
|
+
|
|
10654
|
+
export declare const AiRankingOperator: {
|
|
10655
|
+
readonly TOP: "TOP";
|
|
10656
|
+
readonly BOTTOM: "BOTTOM";
|
|
10657
|
+
};
|
|
10658
|
+
|
|
10659
|
+
export declare type AiRankingOperator = typeof AiRankingOperator[keyof typeof AiRankingOperator];
|
|
10260
10660
|
|
|
10261
10661
|
export declare interface AiReasoningContent {
|
|
10262
10662
|
/**
|
|
@@ -10271,6 +10671,36 @@ export declare interface AiReasoningContent {
|
|
|
10271
10671
|
|
|
10272
10672
|
export declare type AiReasoningContentTypeEnum = 'reasoning';
|
|
10273
10673
|
|
|
10674
|
+
export declare interface AiRelativeDateFilterBodyInput {
|
|
10675
|
+
'dataset': AiAfmObjectIdentifier;
|
|
10676
|
+
'granularity': AiDateGranularityInput;
|
|
10677
|
+
'from': number;
|
|
10678
|
+
'to': number;
|
|
10679
|
+
'applyOnResult'?: boolean | null;
|
|
10680
|
+
'boundedFilter'?: AiBoundedFilterInput | null;
|
|
10681
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
10682
|
+
'localIdentifier'?: string | null;
|
|
10683
|
+
}
|
|
10684
|
+
|
|
10685
|
+
export declare interface AiRelativeDateFilterBodyOutput {
|
|
10686
|
+
'dataset': AiAfmObjectIdentifier;
|
|
10687
|
+
'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
|
|
10688
|
+
'from': number;
|
|
10689
|
+
'to': number;
|
|
10690
|
+
'applyOnResult'?: boolean | null;
|
|
10691
|
+
'boundedFilter'?: AiBoundedFilterOutput | null;
|
|
10692
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
10693
|
+
'localIdentifier'?: string | null;
|
|
10694
|
+
}
|
|
10695
|
+
|
|
10696
|
+
export declare interface AiRelativeDateFilterInput {
|
|
10697
|
+
'relativeDateFilter': AiRelativeDateFilterBodyInput;
|
|
10698
|
+
}
|
|
10699
|
+
|
|
10700
|
+
export declare interface AiRelativeDateFilterOutput {
|
|
10701
|
+
'relativeDateFilter': AiRelativeDateFilterBodyOutput;
|
|
10702
|
+
}
|
|
10703
|
+
|
|
10274
10704
|
export declare interface AiRequestArgs {
|
|
10275
10705
|
url: string;
|
|
10276
10706
|
options: RawAxiosRequestConfig;
|
|
@@ -10450,16 +10880,22 @@ export declare interface AiSkillResponse {
|
|
|
10450
10880
|
}
|
|
10451
10881
|
|
|
10452
10882
|
declare interface AiSummarizeRequest {
|
|
10453
|
-
'visualizations'
|
|
10454
|
-
'filterContext'
|
|
10883
|
+
'visualizations'?: Array<string> | null;
|
|
10884
|
+
'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
|
|
10455
10885
|
'dashboardId': string;
|
|
10886
|
+
'formatHint'?: string | null;
|
|
10456
10887
|
}
|
|
10457
10888
|
export { AiSummarizeRequest }
|
|
10458
10889
|
export { AiSummarizeRequest as GenAiApiSummarizeRequest }
|
|
10459
10890
|
|
|
10891
|
+
/**
|
|
10892
|
+
* @type AiSummarizeRequestFilterContextInner
|
|
10893
|
+
*/
|
|
10894
|
+
export declare type AiSummarizeRequestFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterInput | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRankingFilterInput | AiRelativeDateFilterInput;
|
|
10895
|
+
|
|
10460
10896
|
declare interface AiSummarizeResponse {
|
|
10461
10897
|
'summary': string;
|
|
10462
|
-
'filterContext': Array<
|
|
10898
|
+
'filterContext': Array<AiSummarizeResponseFilterContextInner>;
|
|
10463
10899
|
'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
|
|
10464
10900
|
'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
|
|
10465
10901
|
'generatedAt': string;
|
|
@@ -10467,6 +10903,11 @@ declare interface AiSummarizeResponse {
|
|
|
10467
10903
|
export { AiSummarizeResponse }
|
|
10468
10904
|
export { AiSummarizeResponse as GenAiApiSummarizeResponse }
|
|
10469
10905
|
|
|
10906
|
+
/**
|
|
10907
|
+
* @type AiSummarizeResponseFilterContextInner
|
|
10908
|
+
*/
|
|
10909
|
+
export declare type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
|
|
10910
|
+
|
|
10470
10911
|
export declare interface AiTextFilterValue {
|
|
10471
10912
|
'type': AiTextFilterValueTypeEnum;
|
|
10472
10913
|
'using': string;
|
|
@@ -11799,13 +12240,43 @@ export declare interface AnomalyDetectionWrapper {
|
|
|
11799
12240
|
'anomaly': AnomalyDetection;
|
|
11800
12241
|
}
|
|
11801
12242
|
|
|
12243
|
+
export declare interface AnthropicApiKeyAuth {
|
|
12244
|
+
/**
|
|
12245
|
+
* Anthropic API key.
|
|
12246
|
+
*/
|
|
12247
|
+
'apiKey'?: string | null;
|
|
12248
|
+
/**
|
|
12249
|
+
* Authentication type.
|
|
12250
|
+
*/
|
|
12251
|
+
'type': AnthropicApiKeyAuthTypeEnum;
|
|
12252
|
+
}
|
|
12253
|
+
|
|
12254
|
+
export declare type AnthropicApiKeyAuthTypeEnum = 'API_KEY';
|
|
12255
|
+
|
|
12256
|
+
/**
|
|
12257
|
+
* Configuration for Anthropic provider.
|
|
12258
|
+
*/
|
|
12259
|
+
export declare interface AnthropicProviderConfig {
|
|
12260
|
+
/**
|
|
12261
|
+
* Custom base URL for the Anthropic API. Defaults to the official endpoint; override only for enterprise proxies or compatible gateways.
|
|
12262
|
+
*/
|
|
12263
|
+
'baseUrl'?: string;
|
|
12264
|
+
'auth': AnthropicApiKeyAuth;
|
|
12265
|
+
/**
|
|
12266
|
+
* Provider type.
|
|
12267
|
+
*/
|
|
12268
|
+
'type': AnthropicProviderConfigTypeEnum;
|
|
12269
|
+
}
|
|
12270
|
+
|
|
12271
|
+
export declare type AnthropicProviderConfigTypeEnum = 'ANTHROPIC';
|
|
12272
|
+
|
|
11802
12273
|
export declare interface ApiEntitlement {
|
|
11803
12274
|
'name': ApiEntitlementNameEnum;
|
|
11804
12275
|
'value'?: string;
|
|
11805
12276
|
'expiry'?: string;
|
|
11806
12277
|
}
|
|
11807
12278
|
|
|
11808
|
-
export declare type ApiEntitlementNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit';
|
|
12279
|
+
export declare type ApiEntitlementNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit';
|
|
11809
12280
|
|
|
11810
12281
|
/**
|
|
11811
12282
|
* ApiTokenControllerApi - object-oriented interface
|
|
@@ -30391,7 +30862,7 @@ export declare interface DeclarativeIpAllowlistPolicy {
|
|
|
30391
30862
|
*/
|
|
30392
30863
|
'id': string;
|
|
30393
30864
|
/**
|
|
30394
|
-
* Allowed source
|
|
30865
|
+
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
30395
30866
|
*/
|
|
30396
30867
|
'allowedSources': Array<string>;
|
|
30397
30868
|
/**
|
|
@@ -30919,7 +31390,7 @@ export declare interface DeclarativeSetting {
|
|
|
30919
31390
|
'type'?: DeclarativeSettingTypeEnum;
|
|
30920
31391
|
}
|
|
30921
31392
|
|
|
30922
|
-
export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
31393
|
+
export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
30923
31394
|
|
|
30924
31395
|
export declare interface DeclarativeSingleWorkspacePermission {
|
|
30925
31396
|
/**
|
|
@@ -31909,6 +32380,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
31909
32380
|
* @memberof EntitiesApi
|
|
31910
32381
|
*/
|
|
31911
32382
|
createEntityIdentityProviders(requestParameters: EntitiesApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
32383
|
+
/**
|
|
32384
|
+
*
|
|
32385
|
+
* @summary Post IpAllowlistPolicy entities
|
|
32386
|
+
* @param {EntitiesApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
32387
|
+
* @param {*} [options] Override http request option.
|
|
32388
|
+
* @throws {RequiredError}
|
|
32389
|
+
* @memberof EntitiesApi
|
|
32390
|
+
*/
|
|
32391
|
+
createEntityIpAllowlistPolicies(requestParameters: EntitiesApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
31912
32392
|
/**
|
|
31913
32393
|
* Creates JSON web key - used to verify JSON web tokens (Jwts)
|
|
31914
32394
|
* @summary Post Jwks
|
|
@@ -32234,6 +32714,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32234
32714
|
* @memberof EntitiesApi
|
|
32235
32715
|
*/
|
|
32236
32716
|
deleteEntityIdentityProviders(requestParameters: EntitiesApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32717
|
+
/**
|
|
32718
|
+
*
|
|
32719
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
32720
|
+
* @param {EntitiesApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
32721
|
+
* @param {*} [options] Override http request option.
|
|
32722
|
+
* @throws {RequiredError}
|
|
32723
|
+
* @memberof EntitiesApi
|
|
32724
|
+
*/
|
|
32725
|
+
deleteEntityIpAllowlistPolicies(requestParameters: EntitiesApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32237
32726
|
/**
|
|
32238
32727
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
32239
32728
|
* @summary Delete Jwk
|
|
@@ -32622,6 +33111,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32622
33111
|
* @memberof EntitiesApi
|
|
32623
33112
|
*/
|
|
32624
33113
|
getAllEntitiesIdentityProviders(requestParameters?: EntitiesApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
33114
|
+
/**
|
|
33115
|
+
*
|
|
33116
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
33117
|
+
* @param {EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
33118
|
+
* @param {*} [options] Override http request option.
|
|
33119
|
+
* @throws {RequiredError}
|
|
33120
|
+
* @memberof EntitiesApi
|
|
33121
|
+
*/
|
|
33122
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters?: EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
32625
33123
|
/**
|
|
32626
33124
|
* Returns all JSON web keys - used to verify JSON web tokens (Jwts)
|
|
32627
33125
|
* @summary Get all Jwks
|
|
@@ -33055,6 +33553,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33055
33553
|
* @memberof EntitiesApi
|
|
33056
33554
|
*/
|
|
33057
33555
|
getEntityIdentityProviders(requestParameters: EntitiesApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
33556
|
+
/**
|
|
33557
|
+
*
|
|
33558
|
+
* @summary Get IpAllowlistPolicy entity
|
|
33559
|
+
* @param {EntitiesApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
33560
|
+
* @param {*} [options] Override http request option.
|
|
33561
|
+
* @throws {RequiredError}
|
|
33562
|
+
* @memberof EntitiesApi
|
|
33563
|
+
*/
|
|
33564
|
+
getEntityIpAllowlistPolicies(requestParameters: EntitiesApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
33058
33565
|
/**
|
|
33059
33566
|
* Returns JSON web key - used to verify JSON web tokens (Jwts)
|
|
33060
33567
|
* @summary Get Jwk
|
|
@@ -33984,6 +34491,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33984
34491
|
* @memberof EntitiesApi
|
|
33985
34492
|
*/
|
|
33986
34493
|
updateEntityIdentityProviders(requestParameters: EntitiesApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
34494
|
+
/**
|
|
34495
|
+
*
|
|
34496
|
+
* @summary Put IpAllowlistPolicy entity
|
|
34497
|
+
* @param {EntitiesApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
34498
|
+
* @param {*} [options] Override http request option.
|
|
34499
|
+
* @throws {RequiredError}
|
|
34500
|
+
* @memberof EntitiesApi
|
|
34501
|
+
*/
|
|
34502
|
+
updateEntityIpAllowlistPolicies(requestParameters: EntitiesApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
33987
34503
|
/**
|
|
33988
34504
|
* Updates JSON web key - used to verify JSON web tokens (Jwts)
|
|
33989
34505
|
* @summary Put Jwk
|
|
@@ -41115,6 +41631,26 @@ export declare interface EntitiesApiCreateEntityIdentityProvidersRequest {
|
|
|
41115
41631
|
readonly jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument;
|
|
41116
41632
|
}
|
|
41117
41633
|
|
|
41634
|
+
/**
|
|
41635
|
+
* Request parameters for createEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
41636
|
+
* @export
|
|
41637
|
+
* @interface EntitiesApiCreateEntityIpAllowlistPoliciesRequest
|
|
41638
|
+
*/
|
|
41639
|
+
export declare interface EntitiesApiCreateEntityIpAllowlistPoliciesRequest {
|
|
41640
|
+
/**
|
|
41641
|
+
*
|
|
41642
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
41643
|
+
* @memberof EntitiesApiCreateEntityIpAllowlistPolicies
|
|
41644
|
+
*/
|
|
41645
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
41646
|
+
/**
|
|
41647
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
41648
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
41649
|
+
* @memberof EntitiesApiCreateEntityIpAllowlistPolicies
|
|
41650
|
+
*/
|
|
41651
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
41652
|
+
}
|
|
41653
|
+
|
|
41118
41654
|
/**
|
|
41119
41655
|
* Request parameters for createEntityJwks operation in EntitiesApi.
|
|
41120
41656
|
* @export
|
|
@@ -41865,6 +42401,20 @@ export declare interface EntitiesApiDeleteEntityIdentityProvidersRequest {
|
|
|
41865
42401
|
readonly id: string;
|
|
41866
42402
|
}
|
|
41867
42403
|
|
|
42404
|
+
/**
|
|
42405
|
+
* Request parameters for deleteEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
42406
|
+
* @export
|
|
42407
|
+
* @interface EntitiesApiDeleteEntityIpAllowlistPoliciesRequest
|
|
42408
|
+
*/
|
|
42409
|
+
export declare interface EntitiesApiDeleteEntityIpAllowlistPoliciesRequest {
|
|
42410
|
+
/**
|
|
42411
|
+
*
|
|
42412
|
+
* @type {string}
|
|
42413
|
+
* @memberof EntitiesApiDeleteEntityIpAllowlistPolicies
|
|
42414
|
+
*/
|
|
42415
|
+
readonly id: string;
|
|
42416
|
+
}
|
|
42417
|
+
|
|
41868
42418
|
/**
|
|
41869
42419
|
* Request parameters for deleteEntityJwks operation in EntitiesApi.
|
|
41870
42420
|
* @export
|
|
@@ -43409,6 +43959,50 @@ export declare interface EntitiesApiGetAllEntitiesIdentityProvidersRequest {
|
|
|
43409
43959
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
43410
43960
|
}
|
|
43411
43961
|
|
|
43962
|
+
/**
|
|
43963
|
+
* Request parameters for getAllEntitiesIpAllowlistPolicies operation in EntitiesApi.
|
|
43964
|
+
* @export
|
|
43965
|
+
* @interface EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest
|
|
43966
|
+
*/
|
|
43967
|
+
export declare interface EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest {
|
|
43968
|
+
/**
|
|
43969
|
+
* 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\').
|
|
43970
|
+
* @type {string}
|
|
43971
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
43972
|
+
*/
|
|
43973
|
+
readonly filter?: string;
|
|
43974
|
+
/**
|
|
43975
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
43976
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
43977
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
43978
|
+
*/
|
|
43979
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
43980
|
+
/**
|
|
43981
|
+
* Zero-based page index (0..N)
|
|
43982
|
+
* @type {number}
|
|
43983
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
43984
|
+
*/
|
|
43985
|
+
readonly page?: number;
|
|
43986
|
+
/**
|
|
43987
|
+
* The size of the page to be returned
|
|
43988
|
+
* @type {number}
|
|
43989
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
43990
|
+
*/
|
|
43991
|
+
readonly size?: number;
|
|
43992
|
+
/**
|
|
43993
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
43994
|
+
* @type {Array<string>}
|
|
43995
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
43996
|
+
*/
|
|
43997
|
+
readonly sort?: Array<string>;
|
|
43998
|
+
/**
|
|
43999
|
+
* Include Meta objects.
|
|
44000
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
44001
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44002
|
+
*/
|
|
44003
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
44004
|
+
}
|
|
44005
|
+
|
|
43412
44006
|
/**
|
|
43413
44007
|
* Request parameters for getAllEntitiesJwks operation in EntitiesApi.
|
|
43414
44008
|
* @export
|
|
@@ -45289,6 +45883,32 @@ export declare interface EntitiesApiGetEntityIdentityProvidersRequest {
|
|
|
45289
45883
|
readonly filter?: string;
|
|
45290
45884
|
}
|
|
45291
45885
|
|
|
45886
|
+
/**
|
|
45887
|
+
* Request parameters for getEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
45888
|
+
* @export
|
|
45889
|
+
* @interface EntitiesApiGetEntityIpAllowlistPoliciesRequest
|
|
45890
|
+
*/
|
|
45891
|
+
export declare interface EntitiesApiGetEntityIpAllowlistPoliciesRequest {
|
|
45892
|
+
/**
|
|
45893
|
+
*
|
|
45894
|
+
* @type {string}
|
|
45895
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45896
|
+
*/
|
|
45897
|
+
readonly id: string;
|
|
45898
|
+
/**
|
|
45899
|
+
* 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\').
|
|
45900
|
+
* @type {string}
|
|
45901
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45902
|
+
*/
|
|
45903
|
+
readonly filter?: string;
|
|
45904
|
+
/**
|
|
45905
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
45906
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
45907
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45908
|
+
*/
|
|
45909
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
45910
|
+
}
|
|
45911
|
+
|
|
45292
45912
|
/**
|
|
45293
45913
|
* Request parameters for getEntityJwks operation in EntitiesApi.
|
|
45294
45914
|
* @export
|
|
@@ -46198,6 +46818,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46198
46818
|
* @memberof EntitiesApiInterface
|
|
46199
46819
|
*/
|
|
46200
46820
|
createEntityIdentityProviders(requestParameters: EntitiesApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
46821
|
+
/**
|
|
46822
|
+
*
|
|
46823
|
+
* @summary Post IpAllowlistPolicy entities
|
|
46824
|
+
* @param {EntitiesApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
46825
|
+
* @param {*} [options] Override http request option.
|
|
46826
|
+
* @throws {RequiredError}
|
|
46827
|
+
* @memberof EntitiesApiInterface
|
|
46828
|
+
*/
|
|
46829
|
+
createEntityIpAllowlistPolicies(requestParameters: EntitiesApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
46201
46830
|
/**
|
|
46202
46831
|
* Creates JSON web key - used to verify JSON web tokens (Jwts)
|
|
46203
46832
|
* @summary Post Jwks
|
|
@@ -46523,6 +47152,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46523
47152
|
* @memberof EntitiesApiInterface
|
|
46524
47153
|
*/
|
|
46525
47154
|
deleteEntityIdentityProviders(requestParameters: EntitiesApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47155
|
+
/**
|
|
47156
|
+
*
|
|
47157
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
47158
|
+
* @param {EntitiesApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
47159
|
+
* @param {*} [options] Override http request option.
|
|
47160
|
+
* @throws {RequiredError}
|
|
47161
|
+
* @memberof EntitiesApiInterface
|
|
47162
|
+
*/
|
|
47163
|
+
deleteEntityIpAllowlistPolicies(requestParameters: EntitiesApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
46526
47164
|
/**
|
|
46527
47165
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
46528
47166
|
* @summary Delete Jwk
|
|
@@ -46911,6 +47549,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46911
47549
|
* @memberof EntitiesApiInterface
|
|
46912
47550
|
*/
|
|
46913
47551
|
getAllEntitiesIdentityProviders(requestParameters: EntitiesApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
47552
|
+
/**
|
|
47553
|
+
*
|
|
47554
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
47555
|
+
* @param {EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
47556
|
+
* @param {*} [options] Override http request option.
|
|
47557
|
+
* @throws {RequiredError}
|
|
47558
|
+
* @memberof EntitiesApiInterface
|
|
47559
|
+
*/
|
|
47560
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters: EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
46914
47561
|
/**
|
|
46915
47562
|
* Returns all JSON web keys - used to verify JSON web tokens (Jwts)
|
|
46916
47563
|
* @summary Get all Jwks
|
|
@@ -47344,6 +47991,15 @@ export declare interface EntitiesApiInterface {
|
|
|
47344
47991
|
* @memberof EntitiesApiInterface
|
|
47345
47992
|
*/
|
|
47346
47993
|
getEntityIdentityProviders(requestParameters: EntitiesApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
47994
|
+
/**
|
|
47995
|
+
*
|
|
47996
|
+
* @summary Get IpAllowlistPolicy entity
|
|
47997
|
+
* @param {EntitiesApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
47998
|
+
* @param {*} [options] Override http request option.
|
|
47999
|
+
* @throws {RequiredError}
|
|
48000
|
+
* @memberof EntitiesApiInterface
|
|
48001
|
+
*/
|
|
48002
|
+
getEntityIpAllowlistPolicies(requestParameters: EntitiesApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
47347
48003
|
/**
|
|
47348
48004
|
* Returns JSON web key - used to verify JSON web tokens (Jwts)
|
|
47349
48005
|
* @summary Get Jwk
|
|
@@ -48273,6 +48929,15 @@ export declare interface EntitiesApiInterface {
|
|
|
48273
48929
|
* @memberof EntitiesApiInterface
|
|
48274
48930
|
*/
|
|
48275
48931
|
updateEntityIdentityProviders(requestParameters: EntitiesApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
48932
|
+
/**
|
|
48933
|
+
*
|
|
48934
|
+
* @summary Put IpAllowlistPolicy entity
|
|
48935
|
+
* @param {EntitiesApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
48936
|
+
* @param {*} [options] Override http request option.
|
|
48937
|
+
* @throws {RequiredError}
|
|
48938
|
+
* @memberof EntitiesApiInterface
|
|
48939
|
+
*/
|
|
48940
|
+
updateEntityIpAllowlistPolicies(requestParameters: EntitiesApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
48276
48941
|
/**
|
|
48277
48942
|
* Updates JSON web key - used to verify JSON web tokens (Jwts)
|
|
48278
48943
|
* @summary Put Jwk
|
|
@@ -51020,6 +51685,38 @@ export declare interface EntitiesApiUpdateEntityIdentityProvidersRequest {
|
|
|
51020
51685
|
readonly filter?: string;
|
|
51021
51686
|
}
|
|
51022
51687
|
|
|
51688
|
+
/**
|
|
51689
|
+
* Request parameters for updateEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
51690
|
+
* @export
|
|
51691
|
+
* @interface EntitiesApiUpdateEntityIpAllowlistPoliciesRequest
|
|
51692
|
+
*/
|
|
51693
|
+
export declare interface EntitiesApiUpdateEntityIpAllowlistPoliciesRequest {
|
|
51694
|
+
/**
|
|
51695
|
+
*
|
|
51696
|
+
* @type {string}
|
|
51697
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51698
|
+
*/
|
|
51699
|
+
readonly id: string;
|
|
51700
|
+
/**
|
|
51701
|
+
*
|
|
51702
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
51703
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51704
|
+
*/
|
|
51705
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
51706
|
+
/**
|
|
51707
|
+
* 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\').
|
|
51708
|
+
* @type {string}
|
|
51709
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51710
|
+
*/
|
|
51711
|
+
readonly filter?: string;
|
|
51712
|
+
/**
|
|
51713
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
51714
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
51715
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51716
|
+
*/
|
|
51717
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
51718
|
+
}
|
|
51719
|
+
|
|
51023
51720
|
/**
|
|
51024
51721
|
* Request parameters for updateEntityJwks operation in EntitiesApi.
|
|
51025
51722
|
* @export
|
|
@@ -52086,7 +52783,7 @@ export declare interface EntitlementsRequest {
|
|
|
52086
52783
|
'entitlementsName': Array<EntitlementsRequestEntitlementsNameEnum>;
|
|
52087
52784
|
}
|
|
52088
52785
|
|
|
52089
|
-
export declare type EntitlementsRequestEntitlementsNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit';
|
|
52786
|
+
export declare type EntitlementsRequestEntitlementsNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit';
|
|
52090
52787
|
|
|
52091
52788
|
export declare interface EntityIdentifier {
|
|
52092
52789
|
/**
|
|
@@ -59346,20 +60043,19 @@ export declare function GenAiApi_TrendingObjects(axios: AxiosInstance, basePath:
|
|
|
59346
60043
|
export declare function GenAiApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
59347
60044
|
|
|
59348
60045
|
/**
|
|
59349
|
-
*
|
|
59350
|
-
* @summary Validate LLM Endpoint
|
|
60046
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
60047
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
59351
60048
|
* @param {AxiosInstance} axios Axios instance.
|
|
59352
60049
|
* @param {string} basePath Base path.
|
|
59353
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
59354
60050
|
* @param {*} [options] Override http request option.
|
|
59355
60051
|
* @param {Configuration} [configuration] Optional configuration.
|
|
59356
60052
|
* @throws {RequiredError}
|
|
59357
60053
|
*/
|
|
59358
|
-
export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string,
|
|
60054
|
+
export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<void>;
|
|
59359
60055
|
|
|
59360
60056
|
/**
|
|
59361
|
-
*
|
|
59362
|
-
* @summary Validate LLM Endpoint By Id
|
|
60057
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
60058
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
59363
60059
|
* @param {AxiosInstance} axios Axios instance.
|
|
59364
60060
|
* @param {string} basePath Base path.
|
|
59365
60061
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
@@ -59367,7 +60063,7 @@ export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, baseP
|
|
|
59367
60063
|
* @param {Configuration} [configuration] Optional configuration.
|
|
59368
60064
|
* @throws {RequiredError}
|
|
59369
60065
|
*/
|
|
59370
|
-
export declare function GenAiApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<
|
|
60066
|
+
export declare function GenAiApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<void>;
|
|
59371
60067
|
|
|
59372
60068
|
/**
|
|
59373
60069
|
* Request parameters for createdBy operation in ActionsApi.
|
|
@@ -62122,6 +62818,13 @@ export declare interface Invitation {
|
|
|
62122
62818
|
'forceSend'?: boolean;
|
|
62123
62819
|
}
|
|
62124
62820
|
|
|
62821
|
+
/**
|
|
62822
|
+
* Target delta for IP allowlist policy actions.
|
|
62823
|
+
*/
|
|
62824
|
+
export declare interface IpAllowlistPolicyTargets {
|
|
62825
|
+
'targets': Array<AssigneeIdentifier>;
|
|
62826
|
+
}
|
|
62827
|
+
|
|
62125
62828
|
/**
|
|
62126
62829
|
* @public
|
|
62127
62830
|
*/
|
|
@@ -64229,7 +64932,7 @@ export declare interface JsonApiAutomationInRelationships {
|
|
|
64229
64932
|
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
64230
64933
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
64231
64934
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
64232
|
-
'recipients'?:
|
|
64935
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
64233
64936
|
}
|
|
64234
64937
|
|
|
64235
64938
|
export declare type JsonApiAutomationInTypeEnum = 'automation';
|
|
@@ -64338,7 +65041,7 @@ export declare interface JsonApiAutomationOutRelationships {
|
|
|
64338
65041
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
64339
65042
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
64340
65043
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
64341
|
-
'recipients'?:
|
|
65044
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
64342
65045
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
64343
65046
|
}
|
|
64344
65047
|
|
|
@@ -64475,15 +65178,7 @@ export declare interface JsonApiColorPaletteIn {
|
|
|
64475
65178
|
* API identifier of an object
|
|
64476
65179
|
*/
|
|
64477
65180
|
'id': string;
|
|
64478
|
-
'attributes':
|
|
64479
|
-
}
|
|
64480
|
-
|
|
64481
|
-
export declare interface JsonApiColorPaletteInAttributes {
|
|
64482
|
-
'name': string;
|
|
64483
|
-
/**
|
|
64484
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
64485
|
-
*/
|
|
64486
|
-
'content': object;
|
|
65181
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
64487
65182
|
}
|
|
64488
65183
|
|
|
64489
65184
|
export declare interface JsonApiColorPaletteInDocument {
|
|
@@ -64504,7 +65199,15 @@ export declare interface JsonApiColorPaletteOut {
|
|
|
64504
65199
|
* API identifier of an object
|
|
64505
65200
|
*/
|
|
64506
65201
|
'id': string;
|
|
64507
|
-
'attributes':
|
|
65202
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
65203
|
+
}
|
|
65204
|
+
|
|
65205
|
+
export declare interface JsonApiColorPaletteOutAttributes {
|
|
65206
|
+
'name': string;
|
|
65207
|
+
/**
|
|
65208
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
65209
|
+
*/
|
|
65210
|
+
'content': object;
|
|
64508
65211
|
}
|
|
64509
65212
|
|
|
64510
65213
|
export declare interface JsonApiColorPaletteOutDocument {
|
|
@@ -64532,7 +65235,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
|
|
|
64532
65235
|
* API identifier of an object
|
|
64533
65236
|
*/
|
|
64534
65237
|
'id': string;
|
|
64535
|
-
'attributes':
|
|
65238
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
64536
65239
|
'links'?: ObjectLinks;
|
|
64537
65240
|
}
|
|
64538
65241
|
|
|
@@ -64579,15 +65282,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
64579
65282
|
* API identifier of an object
|
|
64580
65283
|
*/
|
|
64581
65284
|
'id': string;
|
|
64582
|
-
'attributes'?:
|
|
64583
|
-
}
|
|
64584
|
-
|
|
64585
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
64586
|
-
'lastRotation'?: string;
|
|
64587
|
-
/**
|
|
64588
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
64589
|
-
*/
|
|
64590
|
-
'rotationInterval'?: string;
|
|
65285
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
64591
65286
|
}
|
|
64592
65287
|
|
|
64593
65288
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -64608,7 +65303,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
64608
65303
|
* API identifier of an object
|
|
64609
65304
|
*/
|
|
64610
65305
|
'id': string;
|
|
64611
|
-
'attributes'?:
|
|
65306
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
65307
|
+
}
|
|
65308
|
+
|
|
65309
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
65310
|
+
'lastRotation'?: string;
|
|
65311
|
+
/**
|
|
65312
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
65313
|
+
*/
|
|
65314
|
+
'rotationInterval'?: string;
|
|
64612
65315
|
}
|
|
64613
65316
|
|
|
64614
65317
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -64630,7 +65333,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
64630
65333
|
* API identifier of an object
|
|
64631
65334
|
*/
|
|
64632
65335
|
'id': string;
|
|
64633
|
-
'attributes'?:
|
|
65336
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
64634
65337
|
}
|
|
64635
65338
|
|
|
64636
65339
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -64747,7 +65450,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
64747
65450
|
* API identifier of an object
|
|
64748
65451
|
*/
|
|
64749
65452
|
'id': string;
|
|
64750
|
-
'attributes':
|
|
65453
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64751
65454
|
}
|
|
64752
65455
|
|
|
64753
65456
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -64769,7 +65472,15 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
64769
65472
|
*/
|
|
64770
65473
|
'id': string;
|
|
64771
65474
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64772
|
-
'attributes':
|
|
65475
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
65476
|
+
}
|
|
65477
|
+
|
|
65478
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
65479
|
+
'applicationName': string;
|
|
65480
|
+
/**
|
|
65481
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
65482
|
+
*/
|
|
65483
|
+
'content': object;
|
|
64773
65484
|
}
|
|
64774
65485
|
|
|
64775
65486
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -64798,7 +65509,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
64798
65509
|
*/
|
|
64799
65510
|
'id': string;
|
|
64800
65511
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64801
|
-
'attributes':
|
|
65512
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64802
65513
|
'links'?: ObjectLinks;
|
|
64803
65514
|
}
|
|
64804
65515
|
|
|
@@ -64845,15 +65556,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
64845
65556
|
* API identifier of an object
|
|
64846
65557
|
*/
|
|
64847
65558
|
'id'?: string;
|
|
64848
|
-
'attributes':
|
|
64849
|
-
}
|
|
64850
|
-
|
|
64851
|
-
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
64852
|
-
'applicationName': string;
|
|
64853
|
-
/**
|
|
64854
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
64855
|
-
*/
|
|
64856
|
-
'content': object;
|
|
65559
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64857
65560
|
}
|
|
64858
65561
|
|
|
64859
65562
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -64874,12 +65577,7 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
64874
65577
|
* API identifier of an object
|
|
64875
65578
|
*/
|
|
64876
65579
|
'id': string;
|
|
64877
|
-
'attributes'?:
|
|
64878
|
-
}
|
|
64879
|
-
|
|
64880
|
-
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
64881
|
-
'name'?: string | null;
|
|
64882
|
-
'description'?: string | null;
|
|
65580
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64883
65581
|
}
|
|
64884
65582
|
|
|
64885
65583
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -64900,7 +65598,12 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
64900
65598
|
* API identifier of an object
|
|
64901
65599
|
*/
|
|
64902
65600
|
'id': string;
|
|
64903
|
-
'attributes'?:
|
|
65601
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
65602
|
+
}
|
|
65603
|
+
|
|
65604
|
+
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
65605
|
+
'name'?: string | null;
|
|
65606
|
+
'description'?: string | null;
|
|
64904
65607
|
}
|
|
64905
65608
|
|
|
64906
65609
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -64928,7 +65631,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
64928
65631
|
* API identifier of an object
|
|
64929
65632
|
*/
|
|
64930
65633
|
'id': string;
|
|
64931
|
-
'attributes'?:
|
|
65634
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64932
65635
|
'links'?: ObjectLinks;
|
|
64933
65636
|
}
|
|
64934
65637
|
|
|
@@ -64946,7 +65649,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
64946
65649
|
* API identifier of an object
|
|
64947
65650
|
*/
|
|
64948
65651
|
'id': string;
|
|
64949
|
-
'attributes'?:
|
|
65652
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64950
65653
|
}
|
|
64951
65654
|
|
|
64952
65655
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -66786,6 +67489,108 @@ export declare interface JsonApiIdentityProviderPatchDocument {
|
|
|
66786
67489
|
|
|
66787
67490
|
export declare type JsonApiIdentityProviderPatchTypeEnum = 'identityProvider';
|
|
66788
67491
|
|
|
67492
|
+
/**
|
|
67493
|
+
* JSON:API representation of ipAllowlistPolicy entity.
|
|
67494
|
+
*/
|
|
67495
|
+
export declare interface JsonApiIpAllowlistPolicyIn {
|
|
67496
|
+
/**
|
|
67497
|
+
* Object type
|
|
67498
|
+
*/
|
|
67499
|
+
'type': JsonApiIpAllowlistPolicyInTypeEnum;
|
|
67500
|
+
/**
|
|
67501
|
+
* API identifier of an object
|
|
67502
|
+
*/
|
|
67503
|
+
'id': string;
|
|
67504
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67505
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67506
|
+
}
|
|
67507
|
+
|
|
67508
|
+
export declare interface JsonApiIpAllowlistPolicyInDocument {
|
|
67509
|
+
'data': JsonApiIpAllowlistPolicyIn;
|
|
67510
|
+
}
|
|
67511
|
+
|
|
67512
|
+
export declare type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
|
|
67513
|
+
|
|
67514
|
+
/**
|
|
67515
|
+
* JSON:API representation of ipAllowlistPolicy entity.
|
|
67516
|
+
*/
|
|
67517
|
+
export declare interface JsonApiIpAllowlistPolicyOut {
|
|
67518
|
+
/**
|
|
67519
|
+
* Object type
|
|
67520
|
+
*/
|
|
67521
|
+
'type': JsonApiIpAllowlistPolicyOutTypeEnum;
|
|
67522
|
+
/**
|
|
67523
|
+
* API identifier of an object
|
|
67524
|
+
*/
|
|
67525
|
+
'id': string;
|
|
67526
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67527
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67528
|
+
}
|
|
67529
|
+
|
|
67530
|
+
export declare interface JsonApiIpAllowlistPolicyOutAttributes {
|
|
67531
|
+
/**
|
|
67532
|
+
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
67533
|
+
*/
|
|
67534
|
+
'allowedSources': Array<string> | null;
|
|
67535
|
+
}
|
|
67536
|
+
|
|
67537
|
+
export declare interface JsonApiIpAllowlistPolicyOutDocument {
|
|
67538
|
+
'data': JsonApiIpAllowlistPolicyOut;
|
|
67539
|
+
'links'?: ObjectLinks;
|
|
67540
|
+
/**
|
|
67541
|
+
* Included resources
|
|
67542
|
+
*/
|
|
67543
|
+
'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
|
|
67544
|
+
}
|
|
67545
|
+
|
|
67546
|
+
/**
|
|
67547
|
+
* @type JsonApiIpAllowlistPolicyOutIncludes
|
|
67548
|
+
*/
|
|
67549
|
+
export declare type JsonApiIpAllowlistPolicyOutIncludes = JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
|
|
67550
|
+
|
|
67551
|
+
/**
|
|
67552
|
+
* A JSON:API document with a list of resources
|
|
67553
|
+
*/
|
|
67554
|
+
export declare interface JsonApiIpAllowlistPolicyOutList {
|
|
67555
|
+
'data': Array<JsonApiIpAllowlistPolicyOutWithLinks>;
|
|
67556
|
+
'links'?: ListLinks;
|
|
67557
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
67558
|
+
/**
|
|
67559
|
+
* Included resources
|
|
67560
|
+
*/
|
|
67561
|
+
'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
|
|
67562
|
+
}
|
|
67563
|
+
|
|
67564
|
+
export declare interface JsonApiIpAllowlistPolicyOutRelationships {
|
|
67565
|
+
'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
67566
|
+
'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
|
|
67567
|
+
}
|
|
67568
|
+
|
|
67569
|
+
export declare interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
|
|
67570
|
+
/**
|
|
67571
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
67572
|
+
*/
|
|
67573
|
+
'data': Array<JsonApiUserLinkage>;
|
|
67574
|
+
}
|
|
67575
|
+
|
|
67576
|
+
export declare type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
|
|
67577
|
+
|
|
67578
|
+
export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
|
|
67579
|
+
/**
|
|
67580
|
+
* Object type
|
|
67581
|
+
*/
|
|
67582
|
+
'type': JsonApiIpAllowlistPolicyOutWithLinksTypeEnum;
|
|
67583
|
+
/**
|
|
67584
|
+
* API identifier of an object
|
|
67585
|
+
*/
|
|
67586
|
+
'id': string;
|
|
67587
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67588
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67589
|
+
'links'?: ObjectLinks;
|
|
67590
|
+
}
|
|
67591
|
+
|
|
67592
|
+
export declare type JsonApiIpAllowlistPolicyOutWithLinksTypeEnum = 'ipAllowlistPolicy';
|
|
67593
|
+
|
|
66789
67594
|
/**
|
|
66790
67595
|
* JSON:API representation of jwk entity.
|
|
66791
67596
|
*/
|
|
@@ -66798,7 +67603,11 @@ export declare interface JsonApiJwkIn {
|
|
|
66798
67603
|
* API identifier of an object
|
|
66799
67604
|
*/
|
|
66800
67605
|
'id': string;
|
|
66801
|
-
'attributes'?:
|
|
67606
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
67607
|
+
}
|
|
67608
|
+
|
|
67609
|
+
export declare interface JsonApiJwkInAttributes {
|
|
67610
|
+
'content'?: RsaSpecification;
|
|
66802
67611
|
}
|
|
66803
67612
|
|
|
66804
67613
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -66819,11 +67628,7 @@ export declare interface JsonApiJwkOut {
|
|
|
66819
67628
|
* API identifier of an object
|
|
66820
67629
|
*/
|
|
66821
67630
|
'id': string;
|
|
66822
|
-
'attributes'?:
|
|
66823
|
-
}
|
|
66824
|
-
|
|
66825
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
66826
|
-
'content'?: RsaSpecification;
|
|
67631
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66827
67632
|
}
|
|
66828
67633
|
|
|
66829
67634
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -66851,7 +67656,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
66851
67656
|
* API identifier of an object
|
|
66852
67657
|
*/
|
|
66853
67658
|
'id': string;
|
|
66854
|
-
'attributes'?:
|
|
67659
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66855
67660
|
'links'?: ObjectLinks;
|
|
66856
67661
|
}
|
|
66857
67662
|
|
|
@@ -66869,7 +67674,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
66869
67674
|
* API identifier of an object
|
|
66870
67675
|
*/
|
|
66871
67676
|
'id': string;
|
|
66872
|
-
'attributes'?:
|
|
67677
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66873
67678
|
}
|
|
66874
67679
|
|
|
66875
67680
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -67015,10 +67820,14 @@ export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
|
67015
67820
|
}
|
|
67016
67821
|
|
|
67017
67822
|
export declare interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
67018
|
-
'metric'?:
|
|
67823
|
+
'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
67019
67824
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67020
67825
|
}
|
|
67021
67826
|
|
|
67827
|
+
export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
67828
|
+
'data': JsonApiMetricLinkage | null;
|
|
67829
|
+
}
|
|
67830
|
+
|
|
67022
67831
|
export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
|
|
67023
67832
|
|
|
67024
67833
|
export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
@@ -67219,14 +68028,10 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
|
67219
68028
|
}
|
|
67220
68029
|
|
|
67221
68030
|
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
67222
|
-
'metric':
|
|
68031
|
+
'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
67223
68032
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67224
68033
|
}
|
|
67225
68034
|
|
|
67226
|
-
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
67227
|
-
'data': JsonApiMetricLinkage | null;
|
|
67228
|
-
}
|
|
67229
|
-
|
|
67230
68035
|
export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
67231
68036
|
|
|
67232
68037
|
/**
|
|
@@ -67550,31 +68355,10 @@ export declare interface JsonApiLlmProviderIn {
|
|
|
67550
68355
|
* API identifier of an object
|
|
67551
68356
|
*/
|
|
67552
68357
|
'id': string;
|
|
67553
|
-
'attributes'?:
|
|
67554
|
-
}
|
|
67555
|
-
|
|
67556
|
-
export declare interface JsonApiLlmProviderInDocument {
|
|
67557
|
-
'data': JsonApiLlmProviderIn;
|
|
67558
|
-
}
|
|
67559
|
-
|
|
67560
|
-
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
67561
|
-
|
|
67562
|
-
/**
|
|
67563
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
67564
|
-
*/
|
|
67565
|
-
export declare interface JsonApiLlmProviderOut {
|
|
67566
|
-
/**
|
|
67567
|
-
* Object type
|
|
67568
|
-
*/
|
|
67569
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
67570
|
-
/**
|
|
67571
|
-
* API identifier of an object
|
|
67572
|
-
*/
|
|
67573
|
-
'id': string;
|
|
67574
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
68358
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67575
68359
|
}
|
|
67576
68360
|
|
|
67577
|
-
export declare interface
|
|
68361
|
+
export declare interface JsonApiLlmProviderInAttributes {
|
|
67578
68362
|
'name'?: string | null;
|
|
67579
68363
|
/**
|
|
67580
68364
|
* Description of the LLM Provider.
|
|
@@ -67584,17 +68368,17 @@ export declare interface JsonApiLlmProviderOutAttributes {
|
|
|
67584
68368
|
* Required ID of the default model to use from the models list.
|
|
67585
68369
|
*/
|
|
67586
68370
|
'defaultModelId'?: string | null;
|
|
67587
|
-
'providerConfig'?:
|
|
68371
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
67588
68372
|
/**
|
|
67589
68373
|
* List of LLM models available for this provider.
|
|
67590
68374
|
*/
|
|
67591
|
-
'models'?: Array<
|
|
68375
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
67592
68376
|
}
|
|
67593
68377
|
|
|
67594
68378
|
/**
|
|
67595
68379
|
* LLM Model configuration (id, family) within a provider.
|
|
67596
68380
|
*/
|
|
67597
|
-
export declare interface
|
|
68381
|
+
export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
67598
68382
|
/**
|
|
67599
68383
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
67600
68384
|
*/
|
|
@@ -67602,16 +68386,37 @@ export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
67602
68386
|
/**
|
|
67603
68387
|
* Family of LLM models.
|
|
67604
68388
|
*/
|
|
67605
|
-
'family':
|
|
68389
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
67606
68390
|
}
|
|
67607
68391
|
|
|
67608
|
-
export declare type
|
|
68392
|
+
export declare type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
67609
68393
|
|
|
67610
68394
|
/**
|
|
67611
|
-
* @type
|
|
68395
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
67612
68396
|
* Provider-specific configuration including authentication.
|
|
67613
68397
|
*/
|
|
67614
|
-
export declare type
|
|
68398
|
+
export declare type JsonApiLlmProviderInAttributesProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
68399
|
+
|
|
68400
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
68401
|
+
'data': JsonApiLlmProviderIn;
|
|
68402
|
+
}
|
|
68403
|
+
|
|
68404
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
68405
|
+
|
|
68406
|
+
/**
|
|
68407
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
68408
|
+
*/
|
|
68409
|
+
export declare interface JsonApiLlmProviderOut {
|
|
68410
|
+
/**
|
|
68411
|
+
* Object type
|
|
68412
|
+
*/
|
|
68413
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
68414
|
+
/**
|
|
68415
|
+
* API identifier of an object
|
|
68416
|
+
*/
|
|
68417
|
+
'id': string;
|
|
68418
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
68419
|
+
}
|
|
67615
68420
|
|
|
67616
68421
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
67617
68422
|
'data': JsonApiLlmProviderOut;
|
|
@@ -67638,7 +68443,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
67638
68443
|
* API identifier of an object
|
|
67639
68444
|
*/
|
|
67640
68445
|
'id': string;
|
|
67641
|
-
'attributes'?:
|
|
68446
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67642
68447
|
'links'?: ObjectLinks;
|
|
67643
68448
|
}
|
|
67644
68449
|
|
|
@@ -67656,7 +68461,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
67656
68461
|
* API identifier of an object
|
|
67657
68462
|
*/
|
|
67658
68463
|
'id': string;
|
|
67659
|
-
'attributes'?:
|
|
68464
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67660
68465
|
}
|
|
67661
68466
|
|
|
67662
68467
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -68347,33 +69152,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
68347
69152
|
* API identifier of an object
|
|
68348
69153
|
*/
|
|
68349
69154
|
'id': string;
|
|
68350
|
-
'attributes'?:
|
|
68351
|
-
'relationships'?:
|
|
68352
|
-
}
|
|
68353
|
-
|
|
68354
|
-
export declare interface JsonApiOrganizationInAttributes {
|
|
68355
|
-
'name'?: string | null;
|
|
68356
|
-
'hostname'?: string;
|
|
68357
|
-
'allowedOrigins'?: Array<string>;
|
|
68358
|
-
/**
|
|
68359
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
68360
|
-
* @deprecated
|
|
68361
|
-
*/
|
|
68362
|
-
'earlyAccess'?: string | null;
|
|
68363
|
-
/**
|
|
68364
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
68365
|
-
*/
|
|
68366
|
-
'earlyAccessValues'?: Array<string> | null;
|
|
69155
|
+
'attributes'?: JsonApiOrganizationPatchAttributes;
|
|
69156
|
+
'relationships'?: JsonApiOrganizationPatchRelationships;
|
|
68367
69157
|
}
|
|
68368
69158
|
|
|
68369
69159
|
export declare interface JsonApiOrganizationInDocument {
|
|
68370
69160
|
'data': JsonApiOrganizationIn;
|
|
68371
69161
|
}
|
|
68372
69162
|
|
|
68373
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
68374
|
-
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
68375
|
-
}
|
|
68376
|
-
|
|
68377
69163
|
export declare type JsonApiOrganizationInTypeEnum = 'organization';
|
|
68378
69164
|
|
|
68379
69165
|
/**
|
|
@@ -68479,14 +69265,33 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
68479
69265
|
* API identifier of an object
|
|
68480
69266
|
*/
|
|
68481
69267
|
'id': string;
|
|
68482
|
-
'attributes'?:
|
|
68483
|
-
'relationships'?:
|
|
69268
|
+
'attributes'?: JsonApiOrganizationPatchAttributes;
|
|
69269
|
+
'relationships'?: JsonApiOrganizationPatchRelationships;
|
|
69270
|
+
}
|
|
69271
|
+
|
|
69272
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
69273
|
+
'name'?: string | null;
|
|
69274
|
+
'hostname'?: string;
|
|
69275
|
+
'allowedOrigins'?: Array<string>;
|
|
69276
|
+
/**
|
|
69277
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
69278
|
+
* @deprecated
|
|
69279
|
+
*/
|
|
69280
|
+
'earlyAccess'?: string | null;
|
|
69281
|
+
/**
|
|
69282
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
69283
|
+
*/
|
|
69284
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
68484
69285
|
}
|
|
68485
69286
|
|
|
68486
69287
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
68487
69288
|
'data': JsonApiOrganizationPatch;
|
|
68488
69289
|
}
|
|
68489
69290
|
|
|
69291
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
69292
|
+
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
69293
|
+
}
|
|
69294
|
+
|
|
68490
69295
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
68491
69296
|
|
|
68492
69297
|
/**
|
|
@@ -68501,19 +69306,9 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
68501
69306
|
* API identifier of an object
|
|
68502
69307
|
*/
|
|
68503
69308
|
'id': string;
|
|
68504
|
-
'attributes'?:
|
|
68505
|
-
}
|
|
68506
|
-
|
|
68507
|
-
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
68508
|
-
/**
|
|
68509
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
68510
|
-
*/
|
|
68511
|
-
'content'?: object;
|
|
68512
|
-
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
69309
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68513
69310
|
}
|
|
68514
69311
|
|
|
68515
|
-
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
68516
|
-
|
|
68517
69312
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
68518
69313
|
'data': JsonApiOrganizationSettingIn;
|
|
68519
69314
|
}
|
|
@@ -68532,9 +69327,19 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
68532
69327
|
* API identifier of an object
|
|
68533
69328
|
*/
|
|
68534
69329
|
'id': string;
|
|
68535
|
-
'attributes'?:
|
|
69330
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69331
|
+
}
|
|
69332
|
+
|
|
69333
|
+
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
69334
|
+
/**
|
|
69335
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
69336
|
+
*/
|
|
69337
|
+
'content'?: object;
|
|
69338
|
+
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
68536
69339
|
}
|
|
68537
69340
|
|
|
69341
|
+
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
69342
|
+
|
|
68538
69343
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
68539
69344
|
'data': JsonApiOrganizationSettingOut;
|
|
68540
69345
|
'links'?: ObjectLinks;
|
|
@@ -68560,7 +69365,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
68560
69365
|
* API identifier of an object
|
|
68561
69366
|
*/
|
|
68562
69367
|
'id': string;
|
|
68563
|
-
'attributes'?:
|
|
69368
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68564
69369
|
'links'?: ObjectLinks;
|
|
68565
69370
|
}
|
|
68566
69371
|
|
|
@@ -68578,7 +69383,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
68578
69383
|
* API identifier of an object
|
|
68579
69384
|
*/
|
|
68580
69385
|
'id': string;
|
|
68581
|
-
'attributes'?:
|
|
69386
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68582
69387
|
}
|
|
68583
69388
|
|
|
68584
69389
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -68767,7 +69572,7 @@ export declare interface JsonApiThemeIn {
|
|
|
68767
69572
|
* API identifier of an object
|
|
68768
69573
|
*/
|
|
68769
69574
|
'id': string;
|
|
68770
|
-
'attributes':
|
|
69575
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68771
69576
|
}
|
|
68772
69577
|
|
|
68773
69578
|
export declare interface JsonApiThemeInDocument {
|
|
@@ -68788,7 +69593,7 @@ export declare interface JsonApiThemeOut {
|
|
|
68788
69593
|
* API identifier of an object
|
|
68789
69594
|
*/
|
|
68790
69595
|
'id': string;
|
|
68791
|
-
'attributes':
|
|
69596
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68792
69597
|
}
|
|
68793
69598
|
|
|
68794
69599
|
export declare interface JsonApiThemeOutDocument {
|
|
@@ -68816,7 +69621,7 @@ export declare interface JsonApiThemeOutWithLinks {
|
|
|
68816
69621
|
* API identifier of an object
|
|
68817
69622
|
*/
|
|
68818
69623
|
'id': string;
|
|
68819
|
-
'attributes':
|
|
69624
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68820
69625
|
'links'?: ObjectLinks;
|
|
68821
69626
|
}
|
|
68822
69627
|
|
|
@@ -69324,7 +70129,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
69324
70129
|
* API identifier of an object
|
|
69325
70130
|
*/
|
|
69326
70131
|
'id': string;
|
|
69327
|
-
'attributes'?:
|
|
70132
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69328
70133
|
}
|
|
69329
70134
|
|
|
69330
70135
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -69345,7 +70150,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
69345
70150
|
* API identifier of an object
|
|
69346
70151
|
*/
|
|
69347
70152
|
'id': string;
|
|
69348
|
-
'attributes'?:
|
|
70153
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69349
70154
|
}
|
|
69350
70155
|
|
|
69351
70156
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -69373,7 +70178,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
69373
70178
|
* API identifier of an object
|
|
69374
70179
|
*/
|
|
69375
70180
|
'id': string;
|
|
69376
|
-
'attributes'?:
|
|
70181
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69377
70182
|
'links'?: ObjectLinks;
|
|
69378
70183
|
}
|
|
69379
70184
|
|
|
@@ -69735,7 +70540,7 @@ export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
|
69735
70540
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
69736
70541
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
69737
70542
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
69738
|
-
'recipients'?:
|
|
70543
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
69739
70544
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
69740
70545
|
}
|
|
69741
70546
|
|
|
@@ -69757,13 +70562,6 @@ export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationC
|
|
|
69757
70562
|
'data': JsonApiNotificationChannelLinkage | null;
|
|
69758
70563
|
}
|
|
69759
70564
|
|
|
69760
|
-
export declare interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
69761
|
-
/**
|
|
69762
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
69763
|
-
*/
|
|
69764
|
-
'data': Array<JsonApiUserLinkage>;
|
|
69765
|
-
}
|
|
69766
|
-
|
|
69767
70565
|
export declare type JsonApiWorkspaceAutomationOutTypeEnum = 'workspaceAutomation';
|
|
69768
70566
|
|
|
69769
70567
|
export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -69923,28 +70721,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
69923
70721
|
* API identifier of an object
|
|
69924
70722
|
*/
|
|
69925
70723
|
'id': string;
|
|
69926
|
-
'attributes'?:
|
|
69927
|
-
'relationships'?:
|
|
69928
|
-
}
|
|
69929
|
-
|
|
69930
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
69931
|
-
'title'?: string;
|
|
69932
|
-
'description'?: string;
|
|
69933
|
-
'filterValues'?: Array<string>;
|
|
70724
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70725
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
69934
70726
|
}
|
|
69935
70727
|
|
|
69936
70728
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
69937
70729
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
69938
70730
|
}
|
|
69939
70731
|
|
|
69940
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
69941
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
69942
|
-
}
|
|
69943
|
-
|
|
69944
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
69945
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
69946
|
-
}
|
|
69947
|
-
|
|
69948
70732
|
export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
69949
70733
|
|
|
69950
70734
|
/**
|
|
@@ -69970,8 +70754,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
69970
70754
|
*/
|
|
69971
70755
|
'id': string;
|
|
69972
70756
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69973
|
-
'attributes'?:
|
|
69974
|
-
'relationships'?:
|
|
70757
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70758
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70759
|
+
}
|
|
70760
|
+
|
|
70761
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
70762
|
+
'title'?: string;
|
|
70763
|
+
'description'?: string;
|
|
70764
|
+
'filterValues'?: Array<string>;
|
|
69975
70765
|
}
|
|
69976
70766
|
|
|
69977
70767
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -69996,6 +70786,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
69996
70786
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
69997
70787
|
}
|
|
69998
70788
|
|
|
70789
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
70790
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
70791
|
+
}
|
|
70792
|
+
|
|
70793
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
70794
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
70795
|
+
}
|
|
70796
|
+
|
|
69999
70797
|
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
70000
70798
|
|
|
70001
70799
|
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
@@ -70008,8 +70806,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
70008
70806
|
*/
|
|
70009
70807
|
'id': string;
|
|
70010
70808
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70011
|
-
'attributes'?:
|
|
70012
|
-
'relationships'?:
|
|
70809
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70810
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70013
70811
|
'links'?: ObjectLinks;
|
|
70014
70812
|
}
|
|
70015
70813
|
|
|
@@ -70027,8 +70825,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
70027
70825
|
* API identifier of an object
|
|
70028
70826
|
*/
|
|
70029
70827
|
'id': string;
|
|
70030
|
-
'attributes'?:
|
|
70031
|
-
'relationships'?:
|
|
70828
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70829
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70032
70830
|
}
|
|
70033
70831
|
|
|
70034
70832
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -70244,7 +71042,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
70244
71042
|
* API identifier of an object
|
|
70245
71043
|
*/
|
|
70246
71044
|
'id': string;
|
|
70247
|
-
'attributes'?:
|
|
71045
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70248
71046
|
}
|
|
70249
71047
|
|
|
70250
71048
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -70266,7 +71064,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
70266
71064
|
*/
|
|
70267
71065
|
'id': string;
|
|
70268
71066
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70269
|
-
'attributes'?:
|
|
71067
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70270
71068
|
}
|
|
70271
71069
|
|
|
70272
71070
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -70295,7 +71093,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
70295
71093
|
*/
|
|
70296
71094
|
'id': string;
|
|
70297
71095
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70298
|
-
'attributes'?:
|
|
71096
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70299
71097
|
'links'?: ObjectLinks;
|
|
70300
71098
|
}
|
|
70301
71099
|
|
|
@@ -70313,7 +71111,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
70313
71111
|
* API identifier of an object
|
|
70314
71112
|
*/
|
|
70315
71113
|
'id': string;
|
|
70316
|
-
'attributes'?:
|
|
71114
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70317
71115
|
}
|
|
70318
71116
|
|
|
70319
71117
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -70334,7 +71132,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
70334
71132
|
* API identifier of an object
|
|
70335
71133
|
*/
|
|
70336
71134
|
'id'?: string;
|
|
70337
|
-
'attributes'?:
|
|
71135
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70338
71136
|
}
|
|
70339
71137
|
|
|
70340
71138
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -83001,6 +83799,24 @@ export declare interface OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequ
|
|
|
83001
83799
|
* @extends {BaseAPI}
|
|
83002
83800
|
*/
|
|
83003
83801
|
export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implements OrganizationEntityAPIsApiInterface {
|
|
83802
|
+
/**
|
|
83803
|
+
*
|
|
83804
|
+
* @summary Add targets to IP allowlist policy
|
|
83805
|
+
* @param {OrganizationEntityAPIsApiAddTargetsRequest} requestParameters Request parameters.
|
|
83806
|
+
* @param {*} [options] Override http request option.
|
|
83807
|
+
* @throws {RequiredError}
|
|
83808
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83809
|
+
*/
|
|
83810
|
+
addTargets(requestParameters: OrganizationEntityAPIsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83811
|
+
/**
|
|
83812
|
+
*
|
|
83813
|
+
* @summary Post IpAllowlistPolicy entities
|
|
83814
|
+
* @param {OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83815
|
+
* @param {*} [options] Override http request option.
|
|
83816
|
+
* @throws {RequiredError}
|
|
83817
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83818
|
+
*/
|
|
83819
|
+
createEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83004
83820
|
/**
|
|
83005
83821
|
*
|
|
83006
83822
|
* @summary Post Organization Setting entities
|
|
@@ -83010,6 +83826,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83010
83826
|
* @memberof OrganizationEntityAPIsApi
|
|
83011
83827
|
*/
|
|
83012
83828
|
createEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiCreateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
83829
|
+
/**
|
|
83830
|
+
*
|
|
83831
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
83832
|
+
* @param {OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83833
|
+
* @param {*} [options] Override http request option.
|
|
83834
|
+
* @throws {RequiredError}
|
|
83835
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83836
|
+
*/
|
|
83837
|
+
deleteEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83013
83838
|
/**
|
|
83014
83839
|
*
|
|
83015
83840
|
* @summary Delete Organization Setting entity
|
|
@@ -83019,6 +83844,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83019
83844
|
* @memberof OrganizationEntityAPIsApi
|
|
83020
83845
|
*/
|
|
83021
83846
|
deleteEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiDeleteEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83847
|
+
/**
|
|
83848
|
+
*
|
|
83849
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
83850
|
+
* @param {OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83851
|
+
* @param {*} [options] Override http request option.
|
|
83852
|
+
* @throws {RequiredError}
|
|
83853
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83854
|
+
*/
|
|
83855
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters?: OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
83022
83856
|
/**
|
|
83023
83857
|
*
|
|
83024
83858
|
* @summary Get Organization Setting entities
|
|
@@ -83028,6 +83862,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83028
83862
|
* @memberof OrganizationEntityAPIsApi
|
|
83029
83863
|
*/
|
|
83030
83864
|
getAllEntitiesOrganizationSettings(requestParameters?: OrganizationEntityAPIsApiGetAllEntitiesOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutList>;
|
|
83865
|
+
/**
|
|
83866
|
+
*
|
|
83867
|
+
* @summary Get IpAllowlistPolicy entity
|
|
83868
|
+
* @param {OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83869
|
+
* @param {*} [options] Override http request option.
|
|
83870
|
+
* @throws {RequiredError}
|
|
83871
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83872
|
+
*/
|
|
83873
|
+
getEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83031
83874
|
/**
|
|
83032
83875
|
*
|
|
83033
83876
|
* @summary Get Organization Setting entity
|
|
@@ -83073,6 +83916,24 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83073
83916
|
* @memberof OrganizationEntityAPIsApi
|
|
83074
83917
|
*/
|
|
83075
83918
|
patchEntityOrganizations(requestParameters: OrganizationEntityAPIsApiPatchEntityOrganizationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationOutDocument>;
|
|
83919
|
+
/**
|
|
83920
|
+
*
|
|
83921
|
+
* @summary Remove targets from IP allowlist policy
|
|
83922
|
+
* @param {OrganizationEntityAPIsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
83923
|
+
* @param {*} [options] Override http request option.
|
|
83924
|
+
* @throws {RequiredError}
|
|
83925
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83926
|
+
*/
|
|
83927
|
+
removeTargets(requestParameters: OrganizationEntityAPIsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83928
|
+
/**
|
|
83929
|
+
*
|
|
83930
|
+
* @summary Put IpAllowlistPolicy entity
|
|
83931
|
+
* @param {OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83932
|
+
* @param {*} [options] Override http request option.
|
|
83933
|
+
* @throws {RequiredError}
|
|
83934
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83935
|
+
*/
|
|
83936
|
+
updateEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83076
83937
|
/**
|
|
83077
83938
|
*
|
|
83078
83939
|
* @summary Put Organization Setting entity
|
|
@@ -83213,6 +84074,26 @@ export declare function OrganizationEntityAPIsApi_UpdateEntityOrganizations(axio
|
|
|
83213
84074
|
*/
|
|
83214
84075
|
export declare function OrganizationEntityAPIsApi_UpdateEntityOrganizationSettings(axios: AxiosInstance, basePath: string, requestParameters: OrganizationEntityAPIsApiUpdateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
83215
84076
|
|
|
84077
|
+
/**
|
|
84078
|
+
* Request parameters for addTargets operation in OrganizationEntityAPIsApi.
|
|
84079
|
+
* @export
|
|
84080
|
+
* @interface OrganizationEntityAPIsApiAddTargetsRequest
|
|
84081
|
+
*/
|
|
84082
|
+
export declare interface OrganizationEntityAPIsApiAddTargetsRequest {
|
|
84083
|
+
/**
|
|
84084
|
+
*
|
|
84085
|
+
* @type {string}
|
|
84086
|
+
* @memberof OrganizationEntityAPIsApiAddTargets
|
|
84087
|
+
*/
|
|
84088
|
+
readonly id: string;
|
|
84089
|
+
/**
|
|
84090
|
+
*
|
|
84091
|
+
* @type {IpAllowlistPolicyTargets}
|
|
84092
|
+
* @memberof OrganizationEntityAPIsApiAddTargets
|
|
84093
|
+
*/
|
|
84094
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
84095
|
+
}
|
|
84096
|
+
|
|
83216
84097
|
/**
|
|
83217
84098
|
*
|
|
83218
84099
|
* @summary Post Organization Setting entities
|
|
@@ -83331,6 +84212,26 @@ export declare function OrganizationEntityAPIsApiAxiosParamCreator_UpdateEntityO
|
|
|
83331
84212
|
*/
|
|
83332
84213
|
export declare function OrganizationEntityAPIsApiAxiosParamCreator_UpdateEntityOrganizationSettings(id: string, jsonApiOrganizationSettingInDocument: JsonApiOrganizationSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
83333
84214
|
|
|
84215
|
+
/**
|
|
84216
|
+
* Request parameters for createEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84217
|
+
* @export
|
|
84218
|
+
* @interface OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest
|
|
84219
|
+
*/
|
|
84220
|
+
export declare interface OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest {
|
|
84221
|
+
/**
|
|
84222
|
+
*
|
|
84223
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
84224
|
+
* @memberof OrganizationEntityAPIsApiCreateEntityIpAllowlistPolicies
|
|
84225
|
+
*/
|
|
84226
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
84227
|
+
/**
|
|
84228
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
84229
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84230
|
+
* @memberof OrganizationEntityAPIsApiCreateEntityIpAllowlistPolicies
|
|
84231
|
+
*/
|
|
84232
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84233
|
+
}
|
|
84234
|
+
|
|
83334
84235
|
/**
|
|
83335
84236
|
* Request parameters for createEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83336
84237
|
* @export
|
|
@@ -83345,6 +84246,20 @@ export declare interface OrganizationEntityAPIsApiCreateEntityOrganizationSettin
|
|
|
83345
84246
|
readonly jsonApiOrganizationSettingInDocument: JsonApiOrganizationSettingInDocument;
|
|
83346
84247
|
}
|
|
83347
84248
|
|
|
84249
|
+
/**
|
|
84250
|
+
* Request parameters for deleteEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84251
|
+
* @export
|
|
84252
|
+
* @interface OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest
|
|
84253
|
+
*/
|
|
84254
|
+
export declare interface OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest {
|
|
84255
|
+
/**
|
|
84256
|
+
*
|
|
84257
|
+
* @type {string}
|
|
84258
|
+
* @memberof OrganizationEntityAPIsApiDeleteEntityIpAllowlistPolicies
|
|
84259
|
+
*/
|
|
84260
|
+
readonly id: string;
|
|
84261
|
+
}
|
|
84262
|
+
|
|
83348
84263
|
/**
|
|
83349
84264
|
* Request parameters for deleteEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83350
84265
|
* @export
|
|
@@ -83359,6 +84274,50 @@ export declare interface OrganizationEntityAPIsApiDeleteEntityOrganizationSettin
|
|
|
83359
84274
|
readonly id: string;
|
|
83360
84275
|
}
|
|
83361
84276
|
|
|
84277
|
+
/**
|
|
84278
|
+
* Request parameters for getAllEntitiesIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84279
|
+
* @export
|
|
84280
|
+
* @interface OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest
|
|
84281
|
+
*/
|
|
84282
|
+
export declare interface OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest {
|
|
84283
|
+
/**
|
|
84284
|
+
* 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\').
|
|
84285
|
+
* @type {string}
|
|
84286
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84287
|
+
*/
|
|
84288
|
+
readonly filter?: string;
|
|
84289
|
+
/**
|
|
84290
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
84291
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84292
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84293
|
+
*/
|
|
84294
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84295
|
+
/**
|
|
84296
|
+
* Zero-based page index (0..N)
|
|
84297
|
+
* @type {number}
|
|
84298
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84299
|
+
*/
|
|
84300
|
+
readonly page?: number;
|
|
84301
|
+
/**
|
|
84302
|
+
* The size of the page to be returned
|
|
84303
|
+
* @type {number}
|
|
84304
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84305
|
+
*/
|
|
84306
|
+
readonly size?: number;
|
|
84307
|
+
/**
|
|
84308
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
84309
|
+
* @type {Array<string>}
|
|
84310
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84311
|
+
*/
|
|
84312
|
+
readonly sort?: Array<string>;
|
|
84313
|
+
/**
|
|
84314
|
+
* Include Meta objects.
|
|
84315
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
84316
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84317
|
+
*/
|
|
84318
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
84319
|
+
}
|
|
84320
|
+
|
|
83362
84321
|
/**
|
|
83363
84322
|
* Request parameters for getAllEntitiesOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83364
84323
|
* @export
|
|
@@ -83397,6 +84356,32 @@ export declare interface OrganizationEntityAPIsApiGetAllEntitiesOrganizationSett
|
|
|
83397
84356
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
83398
84357
|
}
|
|
83399
84358
|
|
|
84359
|
+
/**
|
|
84360
|
+
* Request parameters for getEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84361
|
+
* @export
|
|
84362
|
+
* @interface OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest
|
|
84363
|
+
*/
|
|
84364
|
+
export declare interface OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest {
|
|
84365
|
+
/**
|
|
84366
|
+
*
|
|
84367
|
+
* @type {string}
|
|
84368
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84369
|
+
*/
|
|
84370
|
+
readonly id: string;
|
|
84371
|
+
/**
|
|
84372
|
+
* 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\').
|
|
84373
|
+
* @type {string}
|
|
84374
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84375
|
+
*/
|
|
84376
|
+
readonly filter?: string;
|
|
84377
|
+
/**
|
|
84378
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
84379
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84380
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84381
|
+
*/
|
|
84382
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84383
|
+
}
|
|
84384
|
+
|
|
83400
84385
|
/**
|
|
83401
84386
|
* Request parameters for getEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83402
84387
|
* @export
|
|
@@ -83469,6 +84454,24 @@ export declare interface OrganizationEntityAPIsApiGetOrganizationRequest {
|
|
|
83469
84454
|
* @interface OrganizationEntityAPIsApi
|
|
83470
84455
|
*/
|
|
83471
84456
|
export declare interface OrganizationEntityAPIsApiInterface {
|
|
84457
|
+
/**
|
|
84458
|
+
*
|
|
84459
|
+
* @summary Add targets to IP allowlist policy
|
|
84460
|
+
* @param {OrganizationEntityAPIsApiAddTargetsRequest} requestParameters Request parameters.
|
|
84461
|
+
* @param {*} [options] Override http request option.
|
|
84462
|
+
* @throws {RequiredError}
|
|
84463
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84464
|
+
*/
|
|
84465
|
+
addTargets(requestParameters: OrganizationEntityAPIsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84466
|
+
/**
|
|
84467
|
+
*
|
|
84468
|
+
* @summary Post IpAllowlistPolicy entities
|
|
84469
|
+
* @param {OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84470
|
+
* @param {*} [options] Override http request option.
|
|
84471
|
+
* @throws {RequiredError}
|
|
84472
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84473
|
+
*/
|
|
84474
|
+
createEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83472
84475
|
/**
|
|
83473
84476
|
*
|
|
83474
84477
|
* @summary Post Organization Setting entities
|
|
@@ -83478,6 +84481,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83478
84481
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83479
84482
|
*/
|
|
83480
84483
|
createEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiCreateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
84484
|
+
/**
|
|
84485
|
+
*
|
|
84486
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
84487
|
+
* @param {OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84488
|
+
* @param {*} [options] Override http request option.
|
|
84489
|
+
* @throws {RequiredError}
|
|
84490
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84491
|
+
*/
|
|
84492
|
+
deleteEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83481
84493
|
/**
|
|
83482
84494
|
*
|
|
83483
84495
|
* @summary Delete Organization Setting entity
|
|
@@ -83487,6 +84499,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83487
84499
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83488
84500
|
*/
|
|
83489
84501
|
deleteEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiDeleteEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84502
|
+
/**
|
|
84503
|
+
*
|
|
84504
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
84505
|
+
* @param {OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84506
|
+
* @param {*} [options] Override http request option.
|
|
84507
|
+
* @throws {RequiredError}
|
|
84508
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84509
|
+
*/
|
|
84510
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
83490
84511
|
/**
|
|
83491
84512
|
*
|
|
83492
84513
|
* @summary Get Organization Setting entities
|
|
@@ -83496,6 +84517,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83496
84517
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83497
84518
|
*/
|
|
83498
84519
|
getAllEntitiesOrganizationSettings(requestParameters: OrganizationEntityAPIsApiGetAllEntitiesOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutList>;
|
|
84520
|
+
/**
|
|
84521
|
+
*
|
|
84522
|
+
* @summary Get IpAllowlistPolicy entity
|
|
84523
|
+
* @param {OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84524
|
+
* @param {*} [options] Override http request option.
|
|
84525
|
+
* @throws {RequiredError}
|
|
84526
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84527
|
+
*/
|
|
84528
|
+
getEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83499
84529
|
/**
|
|
83500
84530
|
*
|
|
83501
84531
|
* @summary Get Organization Setting entity
|
|
@@ -83541,6 +84571,24 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83541
84571
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83542
84572
|
*/
|
|
83543
84573
|
patchEntityOrganizations(requestParameters: OrganizationEntityAPIsApiPatchEntityOrganizationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationOutDocument>;
|
|
84574
|
+
/**
|
|
84575
|
+
*
|
|
84576
|
+
* @summary Remove targets from IP allowlist policy
|
|
84577
|
+
* @param {OrganizationEntityAPIsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
84578
|
+
* @param {*} [options] Override http request option.
|
|
84579
|
+
* @throws {RequiredError}
|
|
84580
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84581
|
+
*/
|
|
84582
|
+
removeTargets(requestParameters: OrganizationEntityAPIsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84583
|
+
/**
|
|
84584
|
+
*
|
|
84585
|
+
* @summary Put IpAllowlistPolicy entity
|
|
84586
|
+
* @param {OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84587
|
+
* @param {*} [options] Override http request option.
|
|
84588
|
+
* @throws {RequiredError}
|
|
84589
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84590
|
+
*/
|
|
84591
|
+
updateEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83544
84592
|
/**
|
|
83545
84593
|
*
|
|
83546
84594
|
* @summary Put Organization Setting entity
|
|
@@ -83619,6 +84667,58 @@ export declare interface OrganizationEntityAPIsApiPatchEntityOrganizationsReques
|
|
|
83619
84667
|
readonly include?: Array<'users' | 'userGroups' | 'identityProviders' | 'bootstrapUser' | 'bootstrapUserGroup' | 'identityProvider' | 'ALL'>;
|
|
83620
84668
|
}
|
|
83621
84669
|
|
|
84670
|
+
/**
|
|
84671
|
+
* Request parameters for removeTargets operation in OrganizationEntityAPIsApi.
|
|
84672
|
+
* @export
|
|
84673
|
+
* @interface OrganizationEntityAPIsApiRemoveTargetsRequest
|
|
84674
|
+
*/
|
|
84675
|
+
export declare interface OrganizationEntityAPIsApiRemoveTargetsRequest {
|
|
84676
|
+
/**
|
|
84677
|
+
*
|
|
84678
|
+
* @type {string}
|
|
84679
|
+
* @memberof OrganizationEntityAPIsApiRemoveTargets
|
|
84680
|
+
*/
|
|
84681
|
+
readonly id: string;
|
|
84682
|
+
/**
|
|
84683
|
+
*
|
|
84684
|
+
* @type {IpAllowlistPolicyTargets}
|
|
84685
|
+
* @memberof OrganizationEntityAPIsApiRemoveTargets
|
|
84686
|
+
*/
|
|
84687
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
84688
|
+
}
|
|
84689
|
+
|
|
84690
|
+
/**
|
|
84691
|
+
* Request parameters for updateEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84692
|
+
* @export
|
|
84693
|
+
* @interface OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest
|
|
84694
|
+
*/
|
|
84695
|
+
export declare interface OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest {
|
|
84696
|
+
/**
|
|
84697
|
+
*
|
|
84698
|
+
* @type {string}
|
|
84699
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84700
|
+
*/
|
|
84701
|
+
readonly id: string;
|
|
84702
|
+
/**
|
|
84703
|
+
*
|
|
84704
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
84705
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84706
|
+
*/
|
|
84707
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
84708
|
+
/**
|
|
84709
|
+
* 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\').
|
|
84710
|
+
* @type {string}
|
|
84711
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84712
|
+
*/
|
|
84713
|
+
readonly filter?: string;
|
|
84714
|
+
/**
|
|
84715
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
84716
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84717
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84718
|
+
*/
|
|
84719
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84720
|
+
}
|
|
84721
|
+
|
|
83622
84722
|
/**
|
|
83623
84723
|
* Request parameters for updateEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83624
84724
|
* @export
|
|
@@ -86612,13 +87712,13 @@ export declare interface PlatformUsage {
|
|
|
86612
87712
|
'count'?: number;
|
|
86613
87713
|
}
|
|
86614
87714
|
|
|
86615
|
-
export declare type PlatformUsageNameEnum = 'UserCount' | 'WorkspaceCount';
|
|
87715
|
+
export declare type PlatformUsageNameEnum = 'UserCount' | 'WorkspaceCount' | 'AiWorkspaceCount';
|
|
86616
87716
|
|
|
86617
87717
|
export declare interface PlatformUsageRequest {
|
|
86618
87718
|
'usageItemNames': Array<PlatformUsageRequestUsageItemNamesEnum>;
|
|
86619
87719
|
}
|
|
86620
87720
|
|
|
86621
|
-
export declare type PlatformUsageRequestUsageItemNamesEnum = 'UserCount' | 'WorkspaceCount';
|
|
87721
|
+
export declare type PlatformUsageRequestUsageItemNamesEnum = 'UserCount' | 'WorkspaceCount' | 'AiWorkspaceCount';
|
|
86622
87722
|
|
|
86623
87723
|
/**
|
|
86624
87724
|
* PluginsApi - object-oriented interface
|
|
@@ -87864,21 +88964,6 @@ export declare interface ReportingSettingsApiResolveSettingsWithoutWorkspaceRequ
|
|
|
87864
88964
|
readonly excludeUserSettings?: boolean;
|
|
87865
88965
|
}
|
|
87866
88966
|
|
|
87867
|
-
export declare interface ResolvedLlmEndpoint {
|
|
87868
|
-
/**
|
|
87869
|
-
* Endpoint Id
|
|
87870
|
-
*/
|
|
87871
|
-
'id': string;
|
|
87872
|
-
/**
|
|
87873
|
-
* Endpoint Title
|
|
87874
|
-
*/
|
|
87875
|
-
'title': string;
|
|
87876
|
-
}
|
|
87877
|
-
|
|
87878
|
-
export declare interface ResolvedLlmEndpoints {
|
|
87879
|
-
'data': Array<ResolvedLlmEndpoint>;
|
|
87880
|
-
}
|
|
87881
|
-
|
|
87882
88967
|
export declare interface ResolvedLlmProvider {
|
|
87883
88968
|
/**
|
|
87884
88969
|
* Provider Id
|
|
@@ -87892,14 +88977,9 @@ export declare interface ResolvedLlmProvider {
|
|
|
87892
88977
|
}
|
|
87893
88978
|
|
|
87894
88979
|
export declare interface ResolvedLlms {
|
|
87895
|
-
'data'?:
|
|
88980
|
+
'data'?: ResolvedLlmProvider;
|
|
87896
88981
|
}
|
|
87897
88982
|
|
|
87898
|
-
/**
|
|
87899
|
-
* @type ResolvedLlmsData
|
|
87900
|
-
*/
|
|
87901
|
-
export declare type ResolvedLlmsData = ResolvedLlmEndpoint | ResolvedLlmProvider;
|
|
87902
|
-
|
|
87903
88983
|
/**
|
|
87904
88984
|
* Setting and its value.
|
|
87905
88985
|
*/
|
|
@@ -87919,7 +88999,7 @@ export declare interface ResolvedSetting {
|
|
|
87919
88999
|
'type'?: ResolvedSettingTypeEnum;
|
|
87920
89000
|
}
|
|
87921
89001
|
|
|
87922
|
-
export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
89002
|
+
export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
87923
89003
|
|
|
87924
89004
|
/**
|
|
87925
89005
|
* A request containing setting IDs to resolve.
|
|
@@ -87956,6 +89036,15 @@ export declare class ResponsesAi extends AiBaseAPI implements ResponsesAiInterfa
|
|
|
87956
89036
|
* @memberof ResponsesAi
|
|
87957
89037
|
*/
|
|
87958
89038
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
89039
|
+
/**
|
|
89040
|
+
*
|
|
89041
|
+
* @summary Post Feedback
|
|
89042
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89043
|
+
* @param {*} [options] Override http request option.
|
|
89044
|
+
* @throws {RequiredError}
|
|
89045
|
+
* @memberof ResponsesAi
|
|
89046
|
+
*/
|
|
89047
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87959
89048
|
}
|
|
87960
89049
|
|
|
87961
89050
|
/**
|
|
@@ -87986,6 +89075,20 @@ declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConver
|
|
|
87986
89075
|
export { ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch as GenAiApi_PatchConversationResponse }
|
|
87987
89076
|
export { ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch }
|
|
87988
89077
|
|
|
89078
|
+
/**
|
|
89079
|
+
*
|
|
89080
|
+
* @summary Post Feedback
|
|
89081
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
89082
|
+
* @param {string} basePath Base path.
|
|
89083
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89084
|
+
* @param {*} [options] Override http request option.
|
|
89085
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89086
|
+
* @throws {RequiredError}
|
|
89087
|
+
*/
|
|
89088
|
+
declare function ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<void>;
|
|
89089
|
+
export { ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost as GenAiApi_PostConversationFeedback }
|
|
89090
|
+
export { ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost }
|
|
89091
|
+
|
|
87989
89092
|
/**
|
|
87990
89093
|
*
|
|
87991
89094
|
* @summary Get Conversation Responses
|
|
@@ -88010,6 +89113,18 @@ export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApi
|
|
|
88010
89113
|
*/
|
|
88011
89114
|
export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
88012
89115
|
|
|
89116
|
+
/**
|
|
89117
|
+
*
|
|
89118
|
+
* @summary Post Feedback
|
|
89119
|
+
* @param {string} workspaceId
|
|
89120
|
+
* @param {string} conversationId
|
|
89121
|
+
* @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
|
|
89122
|
+
* @param {*} [options] Override http request option.
|
|
89123
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89124
|
+
* @throws {RequiredError}
|
|
89125
|
+
*/
|
|
89126
|
+
export declare function ResponsesAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
89127
|
+
|
|
88013
89128
|
/**
|
|
88014
89129
|
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
|
|
88015
89130
|
* @export
|
|
@@ -88056,6 +89171,15 @@ export declare interface ResponsesAiInterface {
|
|
|
88056
89171
|
* @memberof ResponsesAiInterface
|
|
88057
89172
|
*/
|
|
88058
89173
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
89174
|
+
/**
|
|
89175
|
+
*
|
|
89176
|
+
* @summary Post Feedback
|
|
89177
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89178
|
+
* @param {*} [options] Override http request option.
|
|
89179
|
+
* @throws {RequiredError}
|
|
89180
|
+
* @memberof ResponsesAiInterface
|
|
89181
|
+
*/
|
|
89182
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
88059
89183
|
}
|
|
88060
89184
|
|
|
88061
89185
|
/**
|
|
@@ -88092,6 +89216,34 @@ declare interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConver
|
|
|
88092
89216
|
export { ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest as GenAiApiPatchConversationResponseRequest }
|
|
88093
89217
|
export { ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest }
|
|
88094
89218
|
|
|
89219
|
+
/**
|
|
89220
|
+
* Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ResponsesAi.
|
|
89221
|
+
* @export
|
|
89222
|
+
* @interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
|
|
89223
|
+
*/
|
|
89224
|
+
declare interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
|
|
89225
|
+
/**
|
|
89226
|
+
*
|
|
89227
|
+
* @type {string}
|
|
89228
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89229
|
+
*/
|
|
89230
|
+
readonly workspaceId: string;
|
|
89231
|
+
/**
|
|
89232
|
+
*
|
|
89233
|
+
* @type {string}
|
|
89234
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89235
|
+
*/
|
|
89236
|
+
readonly conversationId: string;
|
|
89237
|
+
/**
|
|
89238
|
+
*
|
|
89239
|
+
* @type {AiConversationFeedbackRequest}
|
|
89240
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89241
|
+
*/
|
|
89242
|
+
readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
|
|
89243
|
+
}
|
|
89244
|
+
export { ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest as GenAiApiPostConversationFeedbackRequest }
|
|
89245
|
+
export { ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest }
|
|
89246
|
+
|
|
88095
89247
|
/**
|
|
88096
89248
|
* Object identifier.
|
|
88097
89249
|
*/
|
|
@@ -89845,7 +90997,7 @@ export declare interface TestLlmProviderByIdRequest {
|
|
|
89845
90997
|
/**
|
|
89846
90998
|
* @type TestLlmProviderByIdRequestProviderConfig
|
|
89847
90999
|
*/
|
|
89848
|
-
export declare type TestLlmProviderByIdRequestProviderConfig = AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
|
|
91000
|
+
export declare type TestLlmProviderByIdRequestProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
|
|
89849
91001
|
|
|
89850
91002
|
export declare interface TestLlmProviderDefinitionRequest {
|
|
89851
91003
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
@@ -96091,63 +97243,6 @@ export declare interface ValidateByItem {
|
|
|
96091
97243
|
'type': string;
|
|
96092
97244
|
}
|
|
96093
97245
|
|
|
96094
|
-
export declare interface ValidateLLMEndpointByIdRequest {
|
|
96095
|
-
/**
|
|
96096
|
-
* Provider for the LLM endpoint validation
|
|
96097
|
-
*/
|
|
96098
|
-
'provider'?: string;
|
|
96099
|
-
/**
|
|
96100
|
-
* Base URL for the LLM endpoint validation
|
|
96101
|
-
*/
|
|
96102
|
-
'baseUrl'?: string;
|
|
96103
|
-
/**
|
|
96104
|
-
* Token for the LLM endpoint validation
|
|
96105
|
-
*/
|
|
96106
|
-
'token'?: string;
|
|
96107
|
-
/**
|
|
96108
|
-
* Organization name for the LLM endpoint validation
|
|
96109
|
-
*/
|
|
96110
|
-
'llmOrganization'?: string;
|
|
96111
|
-
/**
|
|
96112
|
-
* LLM model for the LLM endpoint validation
|
|
96113
|
-
*/
|
|
96114
|
-
'llmModel'?: string;
|
|
96115
|
-
}
|
|
96116
|
-
|
|
96117
|
-
export declare interface ValidateLLMEndpointRequest {
|
|
96118
|
-
/**
|
|
96119
|
-
* Provider for the LLM endpoint validation
|
|
96120
|
-
*/
|
|
96121
|
-
'provider': string;
|
|
96122
|
-
/**
|
|
96123
|
-
* Base URL for the LLM endpoint validation
|
|
96124
|
-
*/
|
|
96125
|
-
'baseUrl'?: string;
|
|
96126
|
-
/**
|
|
96127
|
-
* Token for the LLM endpoint validation
|
|
96128
|
-
*/
|
|
96129
|
-
'token': string;
|
|
96130
|
-
/**
|
|
96131
|
-
* Organization name for the LLM endpoint validation
|
|
96132
|
-
*/
|
|
96133
|
-
'llmOrganization'?: string;
|
|
96134
|
-
/**
|
|
96135
|
-
* LLM model for the LLM endpoint validation
|
|
96136
|
-
*/
|
|
96137
|
-
'llmModel'?: string;
|
|
96138
|
-
}
|
|
96139
|
-
|
|
96140
|
-
export declare interface ValidateLLMEndpointResponse {
|
|
96141
|
-
/**
|
|
96142
|
-
* Whether the LLM endpoint validation was successful
|
|
96143
|
-
*/
|
|
96144
|
-
'successful': boolean;
|
|
96145
|
-
/**
|
|
96146
|
-
* Additional message about the LLM endpoint validation
|
|
96147
|
-
*/
|
|
96148
|
-
'message': string;
|
|
96149
|
-
}
|
|
96150
|
-
|
|
96151
97246
|
export declare const ValidateRelationsHeader: {
|
|
96152
97247
|
"X-GDC-VALIDATE-RELATIONS": string;
|
|
96153
97248
|
};
|