@gooddata/api-client-tiger 11.36.0-alpha.1 → 11.36.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1448 -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 +411 -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;
|
|
@@ -10160,6 +10504,7 @@ export declare interface AiMultipartContent {
|
|
|
10160
10504
|
* Ordered multipart content fragments.
|
|
10161
10505
|
*/
|
|
10162
10506
|
'parts': Array<AiMultipartContentPartsInner>;
|
|
10507
|
+
'suggestions'?: AiSuggestions | null;
|
|
10163
10508
|
}
|
|
10164
10509
|
|
|
10165
10510
|
/**
|
|
@@ -10179,6 +10524,18 @@ export declare type AiMultipartContentPartsInner = ({
|
|
|
10179
10524
|
|
|
10180
10525
|
export declare type AiMultipartContentTypeEnum = 'multipart';
|
|
10181
10526
|
|
|
10527
|
+
export declare interface AiNegativeAttributeFilter {
|
|
10528
|
+
'negativeAttributeFilter': AiNegativeAttributeFilterBody;
|
|
10529
|
+
}
|
|
10530
|
+
|
|
10531
|
+
export declare interface AiNegativeAttributeFilterBody {
|
|
10532
|
+
'label': AiLabel;
|
|
10533
|
+
'notIn': AiAttributeFilterElements;
|
|
10534
|
+
'applyOnResult'?: boolean | null;
|
|
10535
|
+
'localIdentifier'?: string | null;
|
|
10536
|
+
'usesArbitraryValues'?: boolean | null;
|
|
10537
|
+
}
|
|
10538
|
+
|
|
10182
10539
|
export declare const AiObjectType: {
|
|
10183
10540
|
readonly UNIDENTIFIED: "unidentified";
|
|
10184
10541
|
readonly WORKSPACE: "workspace";
|
|
@@ -10207,6 +10564,18 @@ declare interface AiPatchDocumentRequest {
|
|
|
10207
10564
|
export { AiPatchDocumentRequest }
|
|
10208
10565
|
export { AiPatchDocumentRequest as GenAiApiPatchDocumentRequestBody }
|
|
10209
10566
|
|
|
10567
|
+
export declare interface AiPositiveAttributeFilter {
|
|
10568
|
+
'positiveAttributeFilter': AiPositiveAttributeFilterBody;
|
|
10569
|
+
}
|
|
10570
|
+
|
|
10571
|
+
export declare interface AiPositiveAttributeFilterBody {
|
|
10572
|
+
'label': AiLabel;
|
|
10573
|
+
'in': AiAttributeFilterElements;
|
|
10574
|
+
'applyOnResult'?: boolean | null;
|
|
10575
|
+
'localIdentifier'?: string | null;
|
|
10576
|
+
'usesArbitraryValues'?: boolean | null;
|
|
10577
|
+
}
|
|
10578
|
+
|
|
10210
10579
|
export declare interface AiQuery {
|
|
10211
10580
|
'fields': {
|
|
10212
10581
|
[key: string]: AiFieldsValue;
|
|
@@ -10248,15 +10617,47 @@ export declare type AiQuerySortByInnerDirectionEnum = 'ASC' | 'DESC';
|
|
|
10248
10617
|
|
|
10249
10618
|
export declare type AiQuerySortByInnerTypeEnum = 'attribute_sort' | 'metric_sort';
|
|
10250
10619
|
|
|
10251
|
-
export declare interface
|
|
10252
|
-
'
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
'
|
|
10620
|
+
export declare interface AiRangeMeasureValueFilter {
|
|
10621
|
+
'rangeMeasureValueFilter': AiRangeMeasureValueFilterBody;
|
|
10622
|
+
}
|
|
10623
|
+
|
|
10624
|
+
export declare interface AiRangeMeasureValueFilterBody {
|
|
10625
|
+
'measure': AiMeasure;
|
|
10626
|
+
'operator': AiRangeMeasureValueOperator;
|
|
10627
|
+
'from': number;
|
|
10628
|
+
'to': number;
|
|
10629
|
+
'treatNullValuesAs'?: number | null;
|
|
10630
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
10631
|
+
'applyOnResult'?: boolean | null;
|
|
10632
|
+
'localIdentifier'?: string | null;
|
|
10257
10633
|
}
|
|
10258
10634
|
|
|
10259
|
-
export declare
|
|
10635
|
+
export declare const AiRangeMeasureValueOperator: {
|
|
10636
|
+
readonly BETWEEN: "BETWEEN";
|
|
10637
|
+
readonly NOT_BETWEEN: "NOT_BETWEEN";
|
|
10638
|
+
};
|
|
10639
|
+
|
|
10640
|
+
export declare type AiRangeMeasureValueOperator = typeof AiRangeMeasureValueOperator[keyof typeof AiRangeMeasureValueOperator];
|
|
10641
|
+
|
|
10642
|
+
export declare interface AiRankingFilterBody {
|
|
10643
|
+
'measures': Array<AiComparisonMeasureValueFilterBodyDimensionalityInner>;
|
|
10644
|
+
'operator': AiRankingOperator;
|
|
10645
|
+
'value': number;
|
|
10646
|
+
'dimensionality'?: Array<AiComparisonMeasureValueFilterBodyDimensionalityInner> | null;
|
|
10647
|
+
'applyOnResult'?: boolean | null;
|
|
10648
|
+
'localIdentifier'?: string | null;
|
|
10649
|
+
}
|
|
10650
|
+
|
|
10651
|
+
export declare interface AiRankingFilterInput {
|
|
10652
|
+
'rankingFilter': AiRankingFilterBody;
|
|
10653
|
+
}
|
|
10654
|
+
|
|
10655
|
+
export declare const AiRankingOperator: {
|
|
10656
|
+
readonly TOP: "TOP";
|
|
10657
|
+
readonly BOTTOM: "BOTTOM";
|
|
10658
|
+
};
|
|
10659
|
+
|
|
10660
|
+
export declare type AiRankingOperator = typeof AiRankingOperator[keyof typeof AiRankingOperator];
|
|
10260
10661
|
|
|
10261
10662
|
export declare interface AiReasoningContent {
|
|
10262
10663
|
/**
|
|
@@ -10271,6 +10672,36 @@ export declare interface AiReasoningContent {
|
|
|
10271
10672
|
|
|
10272
10673
|
export declare type AiReasoningContentTypeEnum = 'reasoning';
|
|
10273
10674
|
|
|
10675
|
+
export declare interface AiRelativeDateFilterBodyInput {
|
|
10676
|
+
'dataset': AiAfmObjectIdentifier;
|
|
10677
|
+
'granularity': AiDateGranularityInput;
|
|
10678
|
+
'from': number;
|
|
10679
|
+
'to': number;
|
|
10680
|
+
'applyOnResult'?: boolean | null;
|
|
10681
|
+
'boundedFilter'?: AiBoundedFilterInput | null;
|
|
10682
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
10683
|
+
'localIdentifier'?: string | null;
|
|
10684
|
+
}
|
|
10685
|
+
|
|
10686
|
+
export declare interface AiRelativeDateFilterBodyOutput {
|
|
10687
|
+
'dataset': AiAfmObjectIdentifier;
|
|
10688
|
+
'granularity': AiAppApplicationDtosAfmFilterDefinitionDateGranularity;
|
|
10689
|
+
'from': number;
|
|
10690
|
+
'to': number;
|
|
10691
|
+
'applyOnResult'?: boolean | null;
|
|
10692
|
+
'boundedFilter'?: AiBoundedFilterOutput | null;
|
|
10693
|
+
'emptyValueHandling'?: AiEmptyValueHandling | null;
|
|
10694
|
+
'localIdentifier'?: string | null;
|
|
10695
|
+
}
|
|
10696
|
+
|
|
10697
|
+
export declare interface AiRelativeDateFilterInput {
|
|
10698
|
+
'relativeDateFilter': AiRelativeDateFilterBodyInput;
|
|
10699
|
+
}
|
|
10700
|
+
|
|
10701
|
+
export declare interface AiRelativeDateFilterOutput {
|
|
10702
|
+
'relativeDateFilter': AiRelativeDateFilterBodyOutput;
|
|
10703
|
+
}
|
|
10704
|
+
|
|
10274
10705
|
export declare interface AiRequestArgs {
|
|
10275
10706
|
url: string;
|
|
10276
10707
|
options: RawAxiosRequestConfig;
|
|
@@ -10449,17 +10880,51 @@ export declare interface AiSkillResponse {
|
|
|
10449
10880
|
'examples': Array<string>;
|
|
10450
10881
|
}
|
|
10451
10882
|
|
|
10883
|
+
/**
|
|
10884
|
+
* A quick-reply action button rendered alongside the follow-up question.
|
|
10885
|
+
*/
|
|
10886
|
+
export declare interface AiSuggestedAction {
|
|
10887
|
+
/**
|
|
10888
|
+
* Button display text (3-5 words).
|
|
10889
|
+
*/
|
|
10890
|
+
'label': string;
|
|
10891
|
+
/**
|
|
10892
|
+
* Exact message sent when the user clicks this action.
|
|
10893
|
+
*/
|
|
10894
|
+
'query': string;
|
|
10895
|
+
}
|
|
10896
|
+
|
|
10897
|
+
/**
|
|
10898
|
+
* Follow-up suggestions emitted by the assistant alongside its terminal multipart message. Carried on the assistant ``MultipartContent`` so suggestions are persisted in conversation history and stream on the same SSE event as the response that produced them.
|
|
10899
|
+
*/
|
|
10900
|
+
export declare interface AiSuggestions {
|
|
10901
|
+
/**
|
|
10902
|
+
* Yes-answerable follow-up question recommending the next step.
|
|
10903
|
+
*/
|
|
10904
|
+
'followUpQuestion': string;
|
|
10905
|
+
/**
|
|
10906
|
+
* Quick-reply action buttons. The first action matches the follow-up question.
|
|
10907
|
+
*/
|
|
10908
|
+
'actions': Array<AiSuggestedAction>;
|
|
10909
|
+
}
|
|
10910
|
+
|
|
10452
10911
|
declare interface AiSummarizeRequest {
|
|
10453
|
-
'visualizations'
|
|
10454
|
-
'filterContext'
|
|
10912
|
+
'visualizations'?: Array<string> | null;
|
|
10913
|
+
'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
|
|
10455
10914
|
'dashboardId': string;
|
|
10915
|
+
'formatHint'?: string | null;
|
|
10456
10916
|
}
|
|
10457
10917
|
export { AiSummarizeRequest }
|
|
10458
10918
|
export { AiSummarizeRequest as GenAiApiSummarizeRequest }
|
|
10459
10919
|
|
|
10920
|
+
/**
|
|
10921
|
+
* @type AiSummarizeRequestFilterContextInner
|
|
10922
|
+
*/
|
|
10923
|
+
export declare type AiSummarizeRequestFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterInput | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRankingFilterInput | AiRelativeDateFilterInput;
|
|
10924
|
+
|
|
10460
10925
|
declare interface AiSummarizeResponse {
|
|
10461
10926
|
'summary': string;
|
|
10462
|
-
'filterContext': Array<
|
|
10927
|
+
'filterContext': Array<AiSummarizeResponseFilterContextInner>;
|
|
10463
10928
|
'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
|
|
10464
10929
|
'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
|
|
10465
10930
|
'generatedAt': string;
|
|
@@ -10467,6 +10932,11 @@ declare interface AiSummarizeResponse {
|
|
|
10467
10932
|
export { AiSummarizeResponse }
|
|
10468
10933
|
export { AiSummarizeResponse as GenAiApiSummarizeResponse }
|
|
10469
10934
|
|
|
10935
|
+
/**
|
|
10936
|
+
* @type AiSummarizeResponseFilterContextInner
|
|
10937
|
+
*/
|
|
10938
|
+
export declare type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
|
|
10939
|
+
|
|
10470
10940
|
export declare interface AiTextFilterValue {
|
|
10471
10941
|
'type': AiTextFilterValueTypeEnum;
|
|
10472
10942
|
'using': string;
|
|
@@ -11799,13 +12269,43 @@ export declare interface AnomalyDetectionWrapper {
|
|
|
11799
12269
|
'anomaly': AnomalyDetection;
|
|
11800
12270
|
}
|
|
11801
12271
|
|
|
12272
|
+
export declare interface AnthropicApiKeyAuth {
|
|
12273
|
+
/**
|
|
12274
|
+
* Anthropic API key.
|
|
12275
|
+
*/
|
|
12276
|
+
'apiKey'?: string | null;
|
|
12277
|
+
/**
|
|
12278
|
+
* Authentication type.
|
|
12279
|
+
*/
|
|
12280
|
+
'type': AnthropicApiKeyAuthTypeEnum;
|
|
12281
|
+
}
|
|
12282
|
+
|
|
12283
|
+
export declare type AnthropicApiKeyAuthTypeEnum = 'API_KEY';
|
|
12284
|
+
|
|
12285
|
+
/**
|
|
12286
|
+
* Configuration for Anthropic provider.
|
|
12287
|
+
*/
|
|
12288
|
+
export declare interface AnthropicProviderConfig {
|
|
12289
|
+
/**
|
|
12290
|
+
* Custom base URL for the Anthropic API. Defaults to the official endpoint; override only for enterprise proxies or compatible gateways.
|
|
12291
|
+
*/
|
|
12292
|
+
'baseUrl'?: string;
|
|
12293
|
+
'auth': AnthropicApiKeyAuth;
|
|
12294
|
+
/**
|
|
12295
|
+
* Provider type.
|
|
12296
|
+
*/
|
|
12297
|
+
'type': AnthropicProviderConfigTypeEnum;
|
|
12298
|
+
}
|
|
12299
|
+
|
|
12300
|
+
export declare type AnthropicProviderConfigTypeEnum = 'ANTHROPIC';
|
|
12301
|
+
|
|
11802
12302
|
export declare interface ApiEntitlement {
|
|
11803
12303
|
'name': ApiEntitlementNameEnum;
|
|
11804
12304
|
'value'?: string;
|
|
11805
12305
|
'expiry'?: string;
|
|
11806
12306
|
}
|
|
11807
12307
|
|
|
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';
|
|
12308
|
+
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
12309
|
|
|
11810
12310
|
/**
|
|
11811
12311
|
* ApiTokenControllerApi - object-oriented interface
|
|
@@ -30391,7 +30891,7 @@ export declare interface DeclarativeIpAllowlistPolicy {
|
|
|
30391
30891
|
*/
|
|
30392
30892
|
'id': string;
|
|
30393
30893
|
/**
|
|
30394
|
-
* Allowed source
|
|
30894
|
+
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
30395
30895
|
*/
|
|
30396
30896
|
'allowedSources': Array<string>;
|
|
30397
30897
|
/**
|
|
@@ -30919,7 +31419,7 @@ export declare interface DeclarativeSetting {
|
|
|
30919
31419
|
'type'?: DeclarativeSettingTypeEnum;
|
|
30920
31420
|
}
|
|
30921
31421
|
|
|
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';
|
|
31422
|
+
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
31423
|
|
|
30924
31424
|
export declare interface DeclarativeSingleWorkspacePermission {
|
|
30925
31425
|
/**
|
|
@@ -31909,6 +32409,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
31909
32409
|
* @memberof EntitiesApi
|
|
31910
32410
|
*/
|
|
31911
32411
|
createEntityIdentityProviders(requestParameters: EntitiesApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
32412
|
+
/**
|
|
32413
|
+
*
|
|
32414
|
+
* @summary Post IpAllowlistPolicy entities
|
|
32415
|
+
* @param {EntitiesApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
32416
|
+
* @param {*} [options] Override http request option.
|
|
32417
|
+
* @throws {RequiredError}
|
|
32418
|
+
* @memberof EntitiesApi
|
|
32419
|
+
*/
|
|
32420
|
+
createEntityIpAllowlistPolicies(requestParameters: EntitiesApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
31912
32421
|
/**
|
|
31913
32422
|
* Creates JSON web key - used to verify JSON web tokens (Jwts)
|
|
31914
32423
|
* @summary Post Jwks
|
|
@@ -32234,6 +32743,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32234
32743
|
* @memberof EntitiesApi
|
|
32235
32744
|
*/
|
|
32236
32745
|
deleteEntityIdentityProviders(requestParameters: EntitiesApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32746
|
+
/**
|
|
32747
|
+
*
|
|
32748
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
32749
|
+
* @param {EntitiesApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
32750
|
+
* @param {*} [options] Override http request option.
|
|
32751
|
+
* @throws {RequiredError}
|
|
32752
|
+
* @memberof EntitiesApi
|
|
32753
|
+
*/
|
|
32754
|
+
deleteEntityIpAllowlistPolicies(requestParameters: EntitiesApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32237
32755
|
/**
|
|
32238
32756
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
32239
32757
|
* @summary Delete Jwk
|
|
@@ -32622,6 +33140,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32622
33140
|
* @memberof EntitiesApi
|
|
32623
33141
|
*/
|
|
32624
33142
|
getAllEntitiesIdentityProviders(requestParameters?: EntitiesApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
33143
|
+
/**
|
|
33144
|
+
*
|
|
33145
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
33146
|
+
* @param {EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
33147
|
+
* @param {*} [options] Override http request option.
|
|
33148
|
+
* @throws {RequiredError}
|
|
33149
|
+
* @memberof EntitiesApi
|
|
33150
|
+
*/
|
|
33151
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters?: EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
32625
33152
|
/**
|
|
32626
33153
|
* Returns all JSON web keys - used to verify JSON web tokens (Jwts)
|
|
32627
33154
|
* @summary Get all Jwks
|
|
@@ -33055,6 +33582,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33055
33582
|
* @memberof EntitiesApi
|
|
33056
33583
|
*/
|
|
33057
33584
|
getEntityIdentityProviders(requestParameters: EntitiesApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
33585
|
+
/**
|
|
33586
|
+
*
|
|
33587
|
+
* @summary Get IpAllowlistPolicy entity
|
|
33588
|
+
* @param {EntitiesApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
33589
|
+
* @param {*} [options] Override http request option.
|
|
33590
|
+
* @throws {RequiredError}
|
|
33591
|
+
* @memberof EntitiesApi
|
|
33592
|
+
*/
|
|
33593
|
+
getEntityIpAllowlistPolicies(requestParameters: EntitiesApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
33058
33594
|
/**
|
|
33059
33595
|
* Returns JSON web key - used to verify JSON web tokens (Jwts)
|
|
33060
33596
|
* @summary Get Jwk
|
|
@@ -33984,6 +34520,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33984
34520
|
* @memberof EntitiesApi
|
|
33985
34521
|
*/
|
|
33986
34522
|
updateEntityIdentityProviders(requestParameters: EntitiesApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
34523
|
+
/**
|
|
34524
|
+
*
|
|
34525
|
+
* @summary Put IpAllowlistPolicy entity
|
|
34526
|
+
* @param {EntitiesApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
34527
|
+
* @param {*} [options] Override http request option.
|
|
34528
|
+
* @throws {RequiredError}
|
|
34529
|
+
* @memberof EntitiesApi
|
|
34530
|
+
*/
|
|
34531
|
+
updateEntityIpAllowlistPolicies(requestParameters: EntitiesApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
33987
34532
|
/**
|
|
33988
34533
|
* Updates JSON web key - used to verify JSON web tokens (Jwts)
|
|
33989
34534
|
* @summary Put Jwk
|
|
@@ -41115,6 +41660,26 @@ export declare interface EntitiesApiCreateEntityIdentityProvidersRequest {
|
|
|
41115
41660
|
readonly jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument;
|
|
41116
41661
|
}
|
|
41117
41662
|
|
|
41663
|
+
/**
|
|
41664
|
+
* Request parameters for createEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
41665
|
+
* @export
|
|
41666
|
+
* @interface EntitiesApiCreateEntityIpAllowlistPoliciesRequest
|
|
41667
|
+
*/
|
|
41668
|
+
export declare interface EntitiesApiCreateEntityIpAllowlistPoliciesRequest {
|
|
41669
|
+
/**
|
|
41670
|
+
*
|
|
41671
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
41672
|
+
* @memberof EntitiesApiCreateEntityIpAllowlistPolicies
|
|
41673
|
+
*/
|
|
41674
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
41675
|
+
/**
|
|
41676
|
+
* 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.
|
|
41677
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
41678
|
+
* @memberof EntitiesApiCreateEntityIpAllowlistPolicies
|
|
41679
|
+
*/
|
|
41680
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
41681
|
+
}
|
|
41682
|
+
|
|
41118
41683
|
/**
|
|
41119
41684
|
* Request parameters for createEntityJwks operation in EntitiesApi.
|
|
41120
41685
|
* @export
|
|
@@ -41865,6 +42430,20 @@ export declare interface EntitiesApiDeleteEntityIdentityProvidersRequest {
|
|
|
41865
42430
|
readonly id: string;
|
|
41866
42431
|
}
|
|
41867
42432
|
|
|
42433
|
+
/**
|
|
42434
|
+
* Request parameters for deleteEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
42435
|
+
* @export
|
|
42436
|
+
* @interface EntitiesApiDeleteEntityIpAllowlistPoliciesRequest
|
|
42437
|
+
*/
|
|
42438
|
+
export declare interface EntitiesApiDeleteEntityIpAllowlistPoliciesRequest {
|
|
42439
|
+
/**
|
|
42440
|
+
*
|
|
42441
|
+
* @type {string}
|
|
42442
|
+
* @memberof EntitiesApiDeleteEntityIpAllowlistPolicies
|
|
42443
|
+
*/
|
|
42444
|
+
readonly id: string;
|
|
42445
|
+
}
|
|
42446
|
+
|
|
41868
42447
|
/**
|
|
41869
42448
|
* Request parameters for deleteEntityJwks operation in EntitiesApi.
|
|
41870
42449
|
* @export
|
|
@@ -43409,6 +43988,50 @@ export declare interface EntitiesApiGetAllEntitiesIdentityProvidersRequest {
|
|
|
43409
43988
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
43410
43989
|
}
|
|
43411
43990
|
|
|
43991
|
+
/**
|
|
43992
|
+
* Request parameters for getAllEntitiesIpAllowlistPolicies operation in EntitiesApi.
|
|
43993
|
+
* @export
|
|
43994
|
+
* @interface EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest
|
|
43995
|
+
*/
|
|
43996
|
+
export declare interface EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest {
|
|
43997
|
+
/**
|
|
43998
|
+
* 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\').
|
|
43999
|
+
* @type {string}
|
|
44000
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44001
|
+
*/
|
|
44002
|
+
readonly filter?: string;
|
|
44003
|
+
/**
|
|
44004
|
+
* 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.
|
|
44005
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
44006
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44007
|
+
*/
|
|
44008
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
44009
|
+
/**
|
|
44010
|
+
* Zero-based page index (0..N)
|
|
44011
|
+
* @type {number}
|
|
44012
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44013
|
+
*/
|
|
44014
|
+
readonly page?: number;
|
|
44015
|
+
/**
|
|
44016
|
+
* The size of the page to be returned
|
|
44017
|
+
* @type {number}
|
|
44018
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44019
|
+
*/
|
|
44020
|
+
readonly size?: number;
|
|
44021
|
+
/**
|
|
44022
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
44023
|
+
* @type {Array<string>}
|
|
44024
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44025
|
+
*/
|
|
44026
|
+
readonly sort?: Array<string>;
|
|
44027
|
+
/**
|
|
44028
|
+
* Include Meta objects.
|
|
44029
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
44030
|
+
* @memberof EntitiesApiGetAllEntitiesIpAllowlistPolicies
|
|
44031
|
+
*/
|
|
44032
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
44033
|
+
}
|
|
44034
|
+
|
|
43412
44035
|
/**
|
|
43413
44036
|
* Request parameters for getAllEntitiesJwks operation in EntitiesApi.
|
|
43414
44037
|
* @export
|
|
@@ -45289,6 +45912,32 @@ export declare interface EntitiesApiGetEntityIdentityProvidersRequest {
|
|
|
45289
45912
|
readonly filter?: string;
|
|
45290
45913
|
}
|
|
45291
45914
|
|
|
45915
|
+
/**
|
|
45916
|
+
* Request parameters for getEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
45917
|
+
* @export
|
|
45918
|
+
* @interface EntitiesApiGetEntityIpAllowlistPoliciesRequest
|
|
45919
|
+
*/
|
|
45920
|
+
export declare interface EntitiesApiGetEntityIpAllowlistPoliciesRequest {
|
|
45921
|
+
/**
|
|
45922
|
+
*
|
|
45923
|
+
* @type {string}
|
|
45924
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45925
|
+
*/
|
|
45926
|
+
readonly id: string;
|
|
45927
|
+
/**
|
|
45928
|
+
* 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\').
|
|
45929
|
+
* @type {string}
|
|
45930
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45931
|
+
*/
|
|
45932
|
+
readonly filter?: string;
|
|
45933
|
+
/**
|
|
45934
|
+
* 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.
|
|
45935
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
45936
|
+
* @memberof EntitiesApiGetEntityIpAllowlistPolicies
|
|
45937
|
+
*/
|
|
45938
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
45939
|
+
}
|
|
45940
|
+
|
|
45292
45941
|
/**
|
|
45293
45942
|
* Request parameters for getEntityJwks operation in EntitiesApi.
|
|
45294
45943
|
* @export
|
|
@@ -46198,6 +46847,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46198
46847
|
* @memberof EntitiesApiInterface
|
|
46199
46848
|
*/
|
|
46200
46849
|
createEntityIdentityProviders(requestParameters: EntitiesApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
46850
|
+
/**
|
|
46851
|
+
*
|
|
46852
|
+
* @summary Post IpAllowlistPolicy entities
|
|
46853
|
+
* @param {EntitiesApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
46854
|
+
* @param {*} [options] Override http request option.
|
|
46855
|
+
* @throws {RequiredError}
|
|
46856
|
+
* @memberof EntitiesApiInterface
|
|
46857
|
+
*/
|
|
46858
|
+
createEntityIpAllowlistPolicies(requestParameters: EntitiesApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
46201
46859
|
/**
|
|
46202
46860
|
* Creates JSON web key - used to verify JSON web tokens (Jwts)
|
|
46203
46861
|
* @summary Post Jwks
|
|
@@ -46523,6 +47181,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46523
47181
|
* @memberof EntitiesApiInterface
|
|
46524
47182
|
*/
|
|
46525
47183
|
deleteEntityIdentityProviders(requestParameters: EntitiesApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47184
|
+
/**
|
|
47185
|
+
*
|
|
47186
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
47187
|
+
* @param {EntitiesApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
47188
|
+
* @param {*} [options] Override http request option.
|
|
47189
|
+
* @throws {RequiredError}
|
|
47190
|
+
* @memberof EntitiesApiInterface
|
|
47191
|
+
*/
|
|
47192
|
+
deleteEntityIpAllowlistPolicies(requestParameters: EntitiesApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
46526
47193
|
/**
|
|
46527
47194
|
* Deletes JSON web key - used to verify JSON web tokens (Jwts)
|
|
46528
47195
|
* @summary Delete Jwk
|
|
@@ -46911,6 +47578,15 @@ export declare interface EntitiesApiInterface {
|
|
|
46911
47578
|
* @memberof EntitiesApiInterface
|
|
46912
47579
|
*/
|
|
46913
47580
|
getAllEntitiesIdentityProviders(requestParameters: EntitiesApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
47581
|
+
/**
|
|
47582
|
+
*
|
|
47583
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
47584
|
+
* @param {EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
47585
|
+
* @param {*} [options] Override http request option.
|
|
47586
|
+
* @throws {RequiredError}
|
|
47587
|
+
* @memberof EntitiesApiInterface
|
|
47588
|
+
*/
|
|
47589
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters: EntitiesApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
46914
47590
|
/**
|
|
46915
47591
|
* Returns all JSON web keys - used to verify JSON web tokens (Jwts)
|
|
46916
47592
|
* @summary Get all Jwks
|
|
@@ -47344,6 +48020,15 @@ export declare interface EntitiesApiInterface {
|
|
|
47344
48020
|
* @memberof EntitiesApiInterface
|
|
47345
48021
|
*/
|
|
47346
48022
|
getEntityIdentityProviders(requestParameters: EntitiesApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
48023
|
+
/**
|
|
48024
|
+
*
|
|
48025
|
+
* @summary Get IpAllowlistPolicy entity
|
|
48026
|
+
* @param {EntitiesApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
48027
|
+
* @param {*} [options] Override http request option.
|
|
48028
|
+
* @throws {RequiredError}
|
|
48029
|
+
* @memberof EntitiesApiInterface
|
|
48030
|
+
*/
|
|
48031
|
+
getEntityIpAllowlistPolicies(requestParameters: EntitiesApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
47347
48032
|
/**
|
|
47348
48033
|
* Returns JSON web key - used to verify JSON web tokens (Jwts)
|
|
47349
48034
|
* @summary Get Jwk
|
|
@@ -48273,6 +48958,15 @@ export declare interface EntitiesApiInterface {
|
|
|
48273
48958
|
* @memberof EntitiesApiInterface
|
|
48274
48959
|
*/
|
|
48275
48960
|
updateEntityIdentityProviders(requestParameters: EntitiesApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
48961
|
+
/**
|
|
48962
|
+
*
|
|
48963
|
+
* @summary Put IpAllowlistPolicy entity
|
|
48964
|
+
* @param {EntitiesApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
48965
|
+
* @param {*} [options] Override http request option.
|
|
48966
|
+
* @throws {RequiredError}
|
|
48967
|
+
* @memberof EntitiesApiInterface
|
|
48968
|
+
*/
|
|
48969
|
+
updateEntityIpAllowlistPolicies(requestParameters: EntitiesApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
48276
48970
|
/**
|
|
48277
48971
|
* Updates JSON web key - used to verify JSON web tokens (Jwts)
|
|
48278
48972
|
* @summary Put Jwk
|
|
@@ -51020,6 +51714,38 @@ export declare interface EntitiesApiUpdateEntityIdentityProvidersRequest {
|
|
|
51020
51714
|
readonly filter?: string;
|
|
51021
51715
|
}
|
|
51022
51716
|
|
|
51717
|
+
/**
|
|
51718
|
+
* Request parameters for updateEntityIpAllowlistPolicies operation in EntitiesApi.
|
|
51719
|
+
* @export
|
|
51720
|
+
* @interface EntitiesApiUpdateEntityIpAllowlistPoliciesRequest
|
|
51721
|
+
*/
|
|
51722
|
+
export declare interface EntitiesApiUpdateEntityIpAllowlistPoliciesRequest {
|
|
51723
|
+
/**
|
|
51724
|
+
*
|
|
51725
|
+
* @type {string}
|
|
51726
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51727
|
+
*/
|
|
51728
|
+
readonly id: string;
|
|
51729
|
+
/**
|
|
51730
|
+
*
|
|
51731
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
51732
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51733
|
+
*/
|
|
51734
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
51735
|
+
/**
|
|
51736
|
+
* 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\').
|
|
51737
|
+
* @type {string}
|
|
51738
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51739
|
+
*/
|
|
51740
|
+
readonly filter?: string;
|
|
51741
|
+
/**
|
|
51742
|
+
* 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.
|
|
51743
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
51744
|
+
* @memberof EntitiesApiUpdateEntityIpAllowlistPolicies
|
|
51745
|
+
*/
|
|
51746
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
51747
|
+
}
|
|
51748
|
+
|
|
51023
51749
|
/**
|
|
51024
51750
|
* Request parameters for updateEntityJwks operation in EntitiesApi.
|
|
51025
51751
|
* @export
|
|
@@ -52086,7 +52812,7 @@ export declare interface EntitlementsRequest {
|
|
|
52086
52812
|
'entitlementsName': Array<EntitlementsRequestEntitlementsNameEnum>;
|
|
52087
52813
|
}
|
|
52088
52814
|
|
|
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';
|
|
52815
|
+
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
52816
|
|
|
52091
52817
|
export declare interface EntityIdentifier {
|
|
52092
52818
|
/**
|
|
@@ -59346,20 +60072,19 @@ export declare function GenAiApi_TrendingObjects(axios: AxiosInstance, basePath:
|
|
|
59346
60072
|
export declare function GenAiApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
59347
60073
|
|
|
59348
60074
|
/**
|
|
59349
|
-
*
|
|
59350
|
-
* @summary Validate LLM Endpoint
|
|
60075
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
60076
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
59351
60077
|
* @param {AxiosInstance} axios Axios instance.
|
|
59352
60078
|
* @param {string} basePath Base path.
|
|
59353
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
59354
60079
|
* @param {*} [options] Override http request option.
|
|
59355
60080
|
* @param {Configuration} [configuration] Optional configuration.
|
|
59356
60081
|
* @throws {RequiredError}
|
|
59357
60082
|
*/
|
|
59358
|
-
export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string,
|
|
60083
|
+
export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<void>;
|
|
59359
60084
|
|
|
59360
60085
|
/**
|
|
59361
|
-
*
|
|
59362
|
-
* @summary Validate LLM Endpoint By Id
|
|
60086
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
60087
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
59363
60088
|
* @param {AxiosInstance} axios Axios instance.
|
|
59364
60089
|
* @param {string} basePath Base path.
|
|
59365
60090
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
@@ -59367,7 +60092,7 @@ export declare function GenAiApi_ValidateLLMEndpoint(axios: AxiosInstance, baseP
|
|
|
59367
60092
|
* @param {Configuration} [configuration] Optional configuration.
|
|
59368
60093
|
* @throws {RequiredError}
|
|
59369
60094
|
*/
|
|
59370
|
-
export declare function GenAiApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<
|
|
60095
|
+
export declare function GenAiApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: LabelElementsConfiguration): AxiosPromise<void>;
|
|
59371
60096
|
|
|
59372
60097
|
/**
|
|
59373
60098
|
* Request parameters for createdBy operation in ActionsApi.
|
|
@@ -62122,6 +62847,13 @@ export declare interface Invitation {
|
|
|
62122
62847
|
'forceSend'?: boolean;
|
|
62123
62848
|
}
|
|
62124
62849
|
|
|
62850
|
+
/**
|
|
62851
|
+
* Target delta for IP allowlist policy actions.
|
|
62852
|
+
*/
|
|
62853
|
+
export declare interface IpAllowlistPolicyTargets {
|
|
62854
|
+
'targets': Array<AssigneeIdentifier>;
|
|
62855
|
+
}
|
|
62856
|
+
|
|
62125
62857
|
/**
|
|
62126
62858
|
* @public
|
|
62127
62859
|
*/
|
|
@@ -64229,7 +64961,7 @@ export declare interface JsonApiAutomationInRelationships {
|
|
|
64229
64961
|
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
64230
64962
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
64231
64963
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
64232
|
-
'recipients'?:
|
|
64964
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
64233
64965
|
}
|
|
64234
64966
|
|
|
64235
64967
|
export declare type JsonApiAutomationInTypeEnum = 'automation';
|
|
@@ -64338,7 +65070,7 @@ export declare interface JsonApiAutomationOutRelationships {
|
|
|
64338
65070
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
64339
65071
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
64340
65072
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
64341
|
-
'recipients'?:
|
|
65073
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
64342
65074
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
64343
65075
|
}
|
|
64344
65076
|
|
|
@@ -64475,15 +65207,7 @@ export declare interface JsonApiColorPaletteIn {
|
|
|
64475
65207
|
* API identifier of an object
|
|
64476
65208
|
*/
|
|
64477
65209
|
'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;
|
|
65210
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
64487
65211
|
}
|
|
64488
65212
|
|
|
64489
65213
|
export declare interface JsonApiColorPaletteInDocument {
|
|
@@ -64504,7 +65228,15 @@ export declare interface JsonApiColorPaletteOut {
|
|
|
64504
65228
|
* API identifier of an object
|
|
64505
65229
|
*/
|
|
64506
65230
|
'id': string;
|
|
64507
|
-
'attributes':
|
|
65231
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
65232
|
+
}
|
|
65233
|
+
|
|
65234
|
+
export declare interface JsonApiColorPaletteOutAttributes {
|
|
65235
|
+
'name': string;
|
|
65236
|
+
/**
|
|
65237
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
65238
|
+
*/
|
|
65239
|
+
'content': object;
|
|
64508
65240
|
}
|
|
64509
65241
|
|
|
64510
65242
|
export declare interface JsonApiColorPaletteOutDocument {
|
|
@@ -64532,7 +65264,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
|
|
|
64532
65264
|
* API identifier of an object
|
|
64533
65265
|
*/
|
|
64534
65266
|
'id': string;
|
|
64535
|
-
'attributes':
|
|
65267
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
64536
65268
|
'links'?: ObjectLinks;
|
|
64537
65269
|
}
|
|
64538
65270
|
|
|
@@ -64579,15 +65311,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
64579
65311
|
* API identifier of an object
|
|
64580
65312
|
*/
|
|
64581
65313
|
'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;
|
|
65314
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
64591
65315
|
}
|
|
64592
65316
|
|
|
64593
65317
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -64608,7 +65332,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
64608
65332
|
* API identifier of an object
|
|
64609
65333
|
*/
|
|
64610
65334
|
'id': string;
|
|
64611
|
-
'attributes'?:
|
|
65335
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
65336
|
+
}
|
|
65337
|
+
|
|
65338
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
65339
|
+
'lastRotation'?: string;
|
|
65340
|
+
/**
|
|
65341
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
65342
|
+
*/
|
|
65343
|
+
'rotationInterval'?: string;
|
|
64612
65344
|
}
|
|
64613
65345
|
|
|
64614
65346
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -64630,7 +65362,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
64630
65362
|
* API identifier of an object
|
|
64631
65363
|
*/
|
|
64632
65364
|
'id': string;
|
|
64633
|
-
'attributes'?:
|
|
65365
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
64634
65366
|
}
|
|
64635
65367
|
|
|
64636
65368
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -64747,7 +65479,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
64747
65479
|
* API identifier of an object
|
|
64748
65480
|
*/
|
|
64749
65481
|
'id': string;
|
|
64750
|
-
'attributes':
|
|
65482
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64751
65483
|
}
|
|
64752
65484
|
|
|
64753
65485
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -64769,7 +65501,15 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
64769
65501
|
*/
|
|
64770
65502
|
'id': string;
|
|
64771
65503
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64772
|
-
'attributes':
|
|
65504
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
65505
|
+
}
|
|
65506
|
+
|
|
65507
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
65508
|
+
'applicationName': string;
|
|
65509
|
+
/**
|
|
65510
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
65511
|
+
*/
|
|
65512
|
+
'content': object;
|
|
64773
65513
|
}
|
|
64774
65514
|
|
|
64775
65515
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -64798,7 +65538,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
64798
65538
|
*/
|
|
64799
65539
|
'id': string;
|
|
64800
65540
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64801
|
-
'attributes':
|
|
65541
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64802
65542
|
'links'?: ObjectLinks;
|
|
64803
65543
|
}
|
|
64804
65544
|
|
|
@@ -64845,15 +65585,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
64845
65585
|
* API identifier of an object
|
|
64846
65586
|
*/
|
|
64847
65587
|
'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;
|
|
65588
|
+
'attributes': JsonApiCustomApplicationSettingOutAttributes;
|
|
64857
65589
|
}
|
|
64858
65590
|
|
|
64859
65591
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -64874,12 +65606,7 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
64874
65606
|
* API identifier of an object
|
|
64875
65607
|
*/
|
|
64876
65608
|
'id': string;
|
|
64877
|
-
'attributes'?:
|
|
64878
|
-
}
|
|
64879
|
-
|
|
64880
|
-
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
64881
|
-
'name'?: string | null;
|
|
64882
|
-
'description'?: string | null;
|
|
65609
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64883
65610
|
}
|
|
64884
65611
|
|
|
64885
65612
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -64900,7 +65627,12 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
64900
65627
|
* API identifier of an object
|
|
64901
65628
|
*/
|
|
64902
65629
|
'id': string;
|
|
64903
|
-
'attributes'?:
|
|
65630
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
65631
|
+
}
|
|
65632
|
+
|
|
65633
|
+
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
65634
|
+
'name'?: string | null;
|
|
65635
|
+
'description'?: string | null;
|
|
64904
65636
|
}
|
|
64905
65637
|
|
|
64906
65638
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -64928,7 +65660,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
64928
65660
|
* API identifier of an object
|
|
64929
65661
|
*/
|
|
64930
65662
|
'id': string;
|
|
64931
|
-
'attributes'?:
|
|
65663
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64932
65664
|
'links'?: ObjectLinks;
|
|
64933
65665
|
}
|
|
64934
65666
|
|
|
@@ -64946,7 +65678,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
64946
65678
|
* API identifier of an object
|
|
64947
65679
|
*/
|
|
64948
65680
|
'id': string;
|
|
64949
|
-
'attributes'?:
|
|
65681
|
+
'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
|
|
64950
65682
|
}
|
|
64951
65683
|
|
|
64952
65684
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -66786,6 +67518,108 @@ export declare interface JsonApiIdentityProviderPatchDocument {
|
|
|
66786
67518
|
|
|
66787
67519
|
export declare type JsonApiIdentityProviderPatchTypeEnum = 'identityProvider';
|
|
66788
67520
|
|
|
67521
|
+
/**
|
|
67522
|
+
* JSON:API representation of ipAllowlistPolicy entity.
|
|
67523
|
+
*/
|
|
67524
|
+
export declare interface JsonApiIpAllowlistPolicyIn {
|
|
67525
|
+
/**
|
|
67526
|
+
* Object type
|
|
67527
|
+
*/
|
|
67528
|
+
'type': JsonApiIpAllowlistPolicyInTypeEnum;
|
|
67529
|
+
/**
|
|
67530
|
+
* API identifier of an object
|
|
67531
|
+
*/
|
|
67532
|
+
'id': string;
|
|
67533
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67534
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67535
|
+
}
|
|
67536
|
+
|
|
67537
|
+
export declare interface JsonApiIpAllowlistPolicyInDocument {
|
|
67538
|
+
'data': JsonApiIpAllowlistPolicyIn;
|
|
67539
|
+
}
|
|
67540
|
+
|
|
67541
|
+
export declare type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
|
|
67542
|
+
|
|
67543
|
+
/**
|
|
67544
|
+
* JSON:API representation of ipAllowlistPolicy entity.
|
|
67545
|
+
*/
|
|
67546
|
+
export declare interface JsonApiIpAllowlistPolicyOut {
|
|
67547
|
+
/**
|
|
67548
|
+
* Object type
|
|
67549
|
+
*/
|
|
67550
|
+
'type': JsonApiIpAllowlistPolicyOutTypeEnum;
|
|
67551
|
+
/**
|
|
67552
|
+
* API identifier of an object
|
|
67553
|
+
*/
|
|
67554
|
+
'id': string;
|
|
67555
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67556
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67557
|
+
}
|
|
67558
|
+
|
|
67559
|
+
export declare interface JsonApiIpAllowlistPolicyOutAttributes {
|
|
67560
|
+
/**
|
|
67561
|
+
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
67562
|
+
*/
|
|
67563
|
+
'allowedSources': Array<string> | null;
|
|
67564
|
+
}
|
|
67565
|
+
|
|
67566
|
+
export declare interface JsonApiIpAllowlistPolicyOutDocument {
|
|
67567
|
+
'data': JsonApiIpAllowlistPolicyOut;
|
|
67568
|
+
'links'?: ObjectLinks;
|
|
67569
|
+
/**
|
|
67570
|
+
* Included resources
|
|
67571
|
+
*/
|
|
67572
|
+
'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
|
|
67573
|
+
}
|
|
67574
|
+
|
|
67575
|
+
/**
|
|
67576
|
+
* @type JsonApiIpAllowlistPolicyOutIncludes
|
|
67577
|
+
*/
|
|
67578
|
+
export declare type JsonApiIpAllowlistPolicyOutIncludes = JsonApiUserGroupOutWithLinks | JsonApiUserOutWithLinks;
|
|
67579
|
+
|
|
67580
|
+
/**
|
|
67581
|
+
* A JSON:API document with a list of resources
|
|
67582
|
+
*/
|
|
67583
|
+
export declare interface JsonApiIpAllowlistPolicyOutList {
|
|
67584
|
+
'data': Array<JsonApiIpAllowlistPolicyOutWithLinks>;
|
|
67585
|
+
'links'?: ListLinks;
|
|
67586
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
67587
|
+
/**
|
|
67588
|
+
* Included resources
|
|
67589
|
+
*/
|
|
67590
|
+
'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
|
|
67591
|
+
}
|
|
67592
|
+
|
|
67593
|
+
export declare interface JsonApiIpAllowlistPolicyOutRelationships {
|
|
67594
|
+
'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
67595
|
+
'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
|
|
67596
|
+
}
|
|
67597
|
+
|
|
67598
|
+
export declare interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
|
|
67599
|
+
/**
|
|
67600
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
67601
|
+
*/
|
|
67602
|
+
'data': Array<JsonApiUserLinkage>;
|
|
67603
|
+
}
|
|
67604
|
+
|
|
67605
|
+
export declare type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
|
|
67606
|
+
|
|
67607
|
+
export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
|
|
67608
|
+
/**
|
|
67609
|
+
* Object type
|
|
67610
|
+
*/
|
|
67611
|
+
'type': JsonApiIpAllowlistPolicyOutWithLinksTypeEnum;
|
|
67612
|
+
/**
|
|
67613
|
+
* API identifier of an object
|
|
67614
|
+
*/
|
|
67615
|
+
'id': string;
|
|
67616
|
+
'attributes': JsonApiIpAllowlistPolicyOutAttributes;
|
|
67617
|
+
'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
|
|
67618
|
+
'links'?: ObjectLinks;
|
|
67619
|
+
}
|
|
67620
|
+
|
|
67621
|
+
export declare type JsonApiIpAllowlistPolicyOutWithLinksTypeEnum = 'ipAllowlistPolicy';
|
|
67622
|
+
|
|
66789
67623
|
/**
|
|
66790
67624
|
* JSON:API representation of jwk entity.
|
|
66791
67625
|
*/
|
|
@@ -66798,7 +67632,11 @@ export declare interface JsonApiJwkIn {
|
|
|
66798
67632
|
* API identifier of an object
|
|
66799
67633
|
*/
|
|
66800
67634
|
'id': string;
|
|
66801
|
-
'attributes'?:
|
|
67635
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
67636
|
+
}
|
|
67637
|
+
|
|
67638
|
+
export declare interface JsonApiJwkInAttributes {
|
|
67639
|
+
'content'?: RsaSpecification;
|
|
66802
67640
|
}
|
|
66803
67641
|
|
|
66804
67642
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -66819,11 +67657,7 @@ export declare interface JsonApiJwkOut {
|
|
|
66819
67657
|
* API identifier of an object
|
|
66820
67658
|
*/
|
|
66821
67659
|
'id': string;
|
|
66822
|
-
'attributes'?:
|
|
66823
|
-
}
|
|
66824
|
-
|
|
66825
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
66826
|
-
'content'?: RsaSpecification;
|
|
67660
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66827
67661
|
}
|
|
66828
67662
|
|
|
66829
67663
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -66851,7 +67685,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
66851
67685
|
* API identifier of an object
|
|
66852
67686
|
*/
|
|
66853
67687
|
'id': string;
|
|
66854
|
-
'attributes'?:
|
|
67688
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66855
67689
|
'links'?: ObjectLinks;
|
|
66856
67690
|
}
|
|
66857
67691
|
|
|
@@ -66869,7 +67703,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
66869
67703
|
* API identifier of an object
|
|
66870
67704
|
*/
|
|
66871
67705
|
'id': string;
|
|
66872
|
-
'attributes'?:
|
|
67706
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
66873
67707
|
}
|
|
66874
67708
|
|
|
66875
67709
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -67015,10 +67849,14 @@ export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
|
67015
67849
|
}
|
|
67016
67850
|
|
|
67017
67851
|
export declare interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
67018
|
-
'metric'?:
|
|
67852
|
+
'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
67019
67853
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67020
67854
|
}
|
|
67021
67855
|
|
|
67856
|
+
export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
67857
|
+
'data': JsonApiMetricLinkage | null;
|
|
67858
|
+
}
|
|
67859
|
+
|
|
67022
67860
|
export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
|
|
67023
67861
|
|
|
67024
67862
|
export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
@@ -67219,14 +68057,10 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
|
67219
68057
|
}
|
|
67220
68058
|
|
|
67221
68059
|
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
67222
|
-
'metric':
|
|
68060
|
+
'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
67223
68061
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67224
68062
|
}
|
|
67225
68063
|
|
|
67226
|
-
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
67227
|
-
'data': JsonApiMetricLinkage | null;
|
|
67228
|
-
}
|
|
67229
|
-
|
|
67230
68064
|
export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
67231
68065
|
|
|
67232
68066
|
/**
|
|
@@ -67550,31 +68384,10 @@ export declare interface JsonApiLlmProviderIn {
|
|
|
67550
68384
|
* API identifier of an object
|
|
67551
68385
|
*/
|
|
67552
68386
|
'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;
|
|
68387
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67575
68388
|
}
|
|
67576
68389
|
|
|
67577
|
-
export declare interface
|
|
68390
|
+
export declare interface JsonApiLlmProviderInAttributes {
|
|
67578
68391
|
'name'?: string | null;
|
|
67579
68392
|
/**
|
|
67580
68393
|
* Description of the LLM Provider.
|
|
@@ -67584,17 +68397,17 @@ export declare interface JsonApiLlmProviderOutAttributes {
|
|
|
67584
68397
|
* Required ID of the default model to use from the models list.
|
|
67585
68398
|
*/
|
|
67586
68399
|
'defaultModelId'?: string | null;
|
|
67587
|
-
'providerConfig'?:
|
|
68400
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
67588
68401
|
/**
|
|
67589
68402
|
* List of LLM models available for this provider.
|
|
67590
68403
|
*/
|
|
67591
|
-
'models'?: Array<
|
|
68404
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
67592
68405
|
}
|
|
67593
68406
|
|
|
67594
68407
|
/**
|
|
67595
68408
|
* LLM Model configuration (id, family) within a provider.
|
|
67596
68409
|
*/
|
|
67597
|
-
export declare interface
|
|
68410
|
+
export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
67598
68411
|
/**
|
|
67599
68412
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
67600
68413
|
*/
|
|
@@ -67602,16 +68415,37 @@ export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
67602
68415
|
/**
|
|
67603
68416
|
* Family of LLM models.
|
|
67604
68417
|
*/
|
|
67605
|
-
'family':
|
|
68418
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
67606
68419
|
}
|
|
67607
68420
|
|
|
67608
|
-
export declare type
|
|
68421
|
+
export declare type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
67609
68422
|
|
|
67610
68423
|
/**
|
|
67611
|
-
* @type
|
|
68424
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
67612
68425
|
* Provider-specific configuration including authentication.
|
|
67613
68426
|
*/
|
|
67614
|
-
export declare type
|
|
68427
|
+
export declare type JsonApiLlmProviderInAttributesProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
68428
|
+
|
|
68429
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
68430
|
+
'data': JsonApiLlmProviderIn;
|
|
68431
|
+
}
|
|
68432
|
+
|
|
68433
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
68434
|
+
|
|
68435
|
+
/**
|
|
68436
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
68437
|
+
*/
|
|
68438
|
+
export declare interface JsonApiLlmProviderOut {
|
|
68439
|
+
/**
|
|
68440
|
+
* Object type
|
|
68441
|
+
*/
|
|
68442
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
68443
|
+
/**
|
|
68444
|
+
* API identifier of an object
|
|
68445
|
+
*/
|
|
68446
|
+
'id': string;
|
|
68447
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
68448
|
+
}
|
|
67615
68449
|
|
|
67616
68450
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
67617
68451
|
'data': JsonApiLlmProviderOut;
|
|
@@ -67638,7 +68472,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
67638
68472
|
* API identifier of an object
|
|
67639
68473
|
*/
|
|
67640
68474
|
'id': string;
|
|
67641
|
-
'attributes'?:
|
|
68475
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67642
68476
|
'links'?: ObjectLinks;
|
|
67643
68477
|
}
|
|
67644
68478
|
|
|
@@ -67656,7 +68490,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
67656
68490
|
* API identifier of an object
|
|
67657
68491
|
*/
|
|
67658
68492
|
'id': string;
|
|
67659
|
-
'attributes'?:
|
|
68493
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
67660
68494
|
}
|
|
67661
68495
|
|
|
67662
68496
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -68347,33 +69181,14 @@ export declare interface JsonApiOrganizationIn {
|
|
|
68347
69181
|
* API identifier of an object
|
|
68348
69182
|
*/
|
|
68349
69183
|
'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;
|
|
69184
|
+
'attributes'?: JsonApiOrganizationPatchAttributes;
|
|
69185
|
+
'relationships'?: JsonApiOrganizationPatchRelationships;
|
|
68367
69186
|
}
|
|
68368
69187
|
|
|
68369
69188
|
export declare interface JsonApiOrganizationInDocument {
|
|
68370
69189
|
'data': JsonApiOrganizationIn;
|
|
68371
69190
|
}
|
|
68372
69191
|
|
|
68373
|
-
export declare interface JsonApiOrganizationInRelationships {
|
|
68374
|
-
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
68375
|
-
}
|
|
68376
|
-
|
|
68377
69192
|
export declare type JsonApiOrganizationInTypeEnum = 'organization';
|
|
68378
69193
|
|
|
68379
69194
|
/**
|
|
@@ -68479,14 +69294,33 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
68479
69294
|
* API identifier of an object
|
|
68480
69295
|
*/
|
|
68481
69296
|
'id': string;
|
|
68482
|
-
'attributes'?:
|
|
68483
|
-
'relationships'?:
|
|
69297
|
+
'attributes'?: JsonApiOrganizationPatchAttributes;
|
|
69298
|
+
'relationships'?: JsonApiOrganizationPatchRelationships;
|
|
69299
|
+
}
|
|
69300
|
+
|
|
69301
|
+
export declare interface JsonApiOrganizationPatchAttributes {
|
|
69302
|
+
'name'?: string | null;
|
|
69303
|
+
'hostname'?: string;
|
|
69304
|
+
'allowedOrigins'?: Array<string>;
|
|
69305
|
+
/**
|
|
69306
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
69307
|
+
* @deprecated
|
|
69308
|
+
*/
|
|
69309
|
+
'earlyAccess'?: string | null;
|
|
69310
|
+
/**
|
|
69311
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
69312
|
+
*/
|
|
69313
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
68484
69314
|
}
|
|
68485
69315
|
|
|
68486
69316
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
68487
69317
|
'data': JsonApiOrganizationPatch;
|
|
68488
69318
|
}
|
|
68489
69319
|
|
|
69320
|
+
export declare interface JsonApiOrganizationPatchRelationships {
|
|
69321
|
+
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
69322
|
+
}
|
|
69323
|
+
|
|
68490
69324
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
68491
69325
|
|
|
68492
69326
|
/**
|
|
@@ -68501,19 +69335,9 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
68501
69335
|
* API identifier of an object
|
|
68502
69336
|
*/
|
|
68503
69337
|
'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;
|
|
69338
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68513
69339
|
}
|
|
68514
69340
|
|
|
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
69341
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
68518
69342
|
'data': JsonApiOrganizationSettingIn;
|
|
68519
69343
|
}
|
|
@@ -68532,9 +69356,19 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
68532
69356
|
* API identifier of an object
|
|
68533
69357
|
*/
|
|
68534
69358
|
'id': string;
|
|
68535
|
-
'attributes'?:
|
|
69359
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69360
|
+
}
|
|
69361
|
+
|
|
69362
|
+
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
69363
|
+
/**
|
|
69364
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
69365
|
+
*/
|
|
69366
|
+
'content'?: object;
|
|
69367
|
+
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
68536
69368
|
}
|
|
68537
69369
|
|
|
69370
|
+
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';
|
|
69371
|
+
|
|
68538
69372
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
68539
69373
|
'data': JsonApiOrganizationSettingOut;
|
|
68540
69374
|
'links'?: ObjectLinks;
|
|
@@ -68560,7 +69394,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
68560
69394
|
* API identifier of an object
|
|
68561
69395
|
*/
|
|
68562
69396
|
'id': string;
|
|
68563
|
-
'attributes'?:
|
|
69397
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68564
69398
|
'links'?: ObjectLinks;
|
|
68565
69399
|
}
|
|
68566
69400
|
|
|
@@ -68578,7 +69412,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
68578
69412
|
* API identifier of an object
|
|
68579
69413
|
*/
|
|
68580
69414
|
'id': string;
|
|
68581
|
-
'attributes'?:
|
|
69415
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68582
69416
|
}
|
|
68583
69417
|
|
|
68584
69418
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -68767,7 +69601,7 @@ export declare interface JsonApiThemeIn {
|
|
|
68767
69601
|
* API identifier of an object
|
|
68768
69602
|
*/
|
|
68769
69603
|
'id': string;
|
|
68770
|
-
'attributes':
|
|
69604
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68771
69605
|
}
|
|
68772
69606
|
|
|
68773
69607
|
export declare interface JsonApiThemeInDocument {
|
|
@@ -68788,7 +69622,7 @@ export declare interface JsonApiThemeOut {
|
|
|
68788
69622
|
* API identifier of an object
|
|
68789
69623
|
*/
|
|
68790
69624
|
'id': string;
|
|
68791
|
-
'attributes':
|
|
69625
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68792
69626
|
}
|
|
68793
69627
|
|
|
68794
69628
|
export declare interface JsonApiThemeOutDocument {
|
|
@@ -68816,7 +69650,7 @@ export declare interface JsonApiThemeOutWithLinks {
|
|
|
68816
69650
|
* API identifier of an object
|
|
68817
69651
|
*/
|
|
68818
69652
|
'id': string;
|
|
68819
|
-
'attributes':
|
|
69653
|
+
'attributes': JsonApiColorPaletteOutAttributes;
|
|
68820
69654
|
'links'?: ObjectLinks;
|
|
68821
69655
|
}
|
|
68822
69656
|
|
|
@@ -69324,7 +70158,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
69324
70158
|
* API identifier of an object
|
|
69325
70159
|
*/
|
|
69326
70160
|
'id': string;
|
|
69327
|
-
'attributes'?:
|
|
70161
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69328
70162
|
}
|
|
69329
70163
|
|
|
69330
70164
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -69345,7 +70179,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
69345
70179
|
* API identifier of an object
|
|
69346
70180
|
*/
|
|
69347
70181
|
'id': string;
|
|
69348
|
-
'attributes'?:
|
|
70182
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69349
70183
|
}
|
|
69350
70184
|
|
|
69351
70185
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -69373,7 +70207,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
69373
70207
|
* API identifier of an object
|
|
69374
70208
|
*/
|
|
69375
70209
|
'id': string;
|
|
69376
|
-
'attributes'?:
|
|
70210
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69377
70211
|
'links'?: ObjectLinks;
|
|
69378
70212
|
}
|
|
69379
70213
|
|
|
@@ -69735,7 +70569,7 @@ export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
|
69735
70569
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
69736
70570
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
69737
70571
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
69738
|
-
'recipients'?:
|
|
70572
|
+
'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
69739
70573
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
69740
70574
|
}
|
|
69741
70575
|
|
|
@@ -69757,13 +70591,6 @@ export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationC
|
|
|
69757
70591
|
'data': JsonApiNotificationChannelLinkage | null;
|
|
69758
70592
|
}
|
|
69759
70593
|
|
|
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
70594
|
export declare type JsonApiWorkspaceAutomationOutTypeEnum = 'workspaceAutomation';
|
|
69768
70595
|
|
|
69769
70596
|
export declare interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -69923,28 +70750,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
69923
70750
|
* API identifier of an object
|
|
69924
70751
|
*/
|
|
69925
70752
|
'id': string;
|
|
69926
|
-
'attributes'?:
|
|
69927
|
-
'relationships'?:
|
|
69928
|
-
}
|
|
69929
|
-
|
|
69930
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
69931
|
-
'title'?: string;
|
|
69932
|
-
'description'?: string;
|
|
69933
|
-
'filterValues'?: Array<string>;
|
|
70753
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70754
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
69934
70755
|
}
|
|
69935
70756
|
|
|
69936
70757
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
69937
70758
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
69938
70759
|
}
|
|
69939
70760
|
|
|
69940
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
69941
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
69942
|
-
}
|
|
69943
|
-
|
|
69944
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
69945
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
69946
|
-
}
|
|
69947
|
-
|
|
69948
70761
|
export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
69949
70762
|
|
|
69950
70763
|
/**
|
|
@@ -69970,8 +70783,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
69970
70783
|
*/
|
|
69971
70784
|
'id': string;
|
|
69972
70785
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69973
|
-
'attributes'?:
|
|
69974
|
-
'relationships'?:
|
|
70786
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70787
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70788
|
+
}
|
|
70789
|
+
|
|
70790
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
70791
|
+
'title'?: string;
|
|
70792
|
+
'description'?: string;
|
|
70793
|
+
'filterValues'?: Array<string>;
|
|
69975
70794
|
}
|
|
69976
70795
|
|
|
69977
70796
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -69996,6 +70815,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
69996
70815
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
69997
70816
|
}
|
|
69998
70817
|
|
|
70818
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
70819
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
70820
|
+
}
|
|
70821
|
+
|
|
70822
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
70823
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
70824
|
+
}
|
|
70825
|
+
|
|
69999
70826
|
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
70000
70827
|
|
|
70001
70828
|
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
@@ -70008,8 +70835,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
70008
70835
|
*/
|
|
70009
70836
|
'id': string;
|
|
70010
70837
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70011
|
-
'attributes'?:
|
|
70012
|
-
'relationships'?:
|
|
70838
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70839
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70013
70840
|
'links'?: ObjectLinks;
|
|
70014
70841
|
}
|
|
70015
70842
|
|
|
@@ -70027,8 +70854,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
70027
70854
|
* API identifier of an object
|
|
70028
70855
|
*/
|
|
70029
70856
|
'id': string;
|
|
70030
|
-
'attributes'?:
|
|
70031
|
-
'relationships'?:
|
|
70857
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
70858
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
70032
70859
|
}
|
|
70033
70860
|
|
|
70034
70861
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -70244,7 +71071,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
70244
71071
|
* API identifier of an object
|
|
70245
71072
|
*/
|
|
70246
71073
|
'id': string;
|
|
70247
|
-
'attributes'?:
|
|
71074
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70248
71075
|
}
|
|
70249
71076
|
|
|
70250
71077
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -70266,7 +71093,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
70266
71093
|
*/
|
|
70267
71094
|
'id': string;
|
|
70268
71095
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70269
|
-
'attributes'?:
|
|
71096
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70270
71097
|
}
|
|
70271
71098
|
|
|
70272
71099
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -70295,7 +71122,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
70295
71122
|
*/
|
|
70296
71123
|
'id': string;
|
|
70297
71124
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
70298
|
-
'attributes'?:
|
|
71125
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70299
71126
|
'links'?: ObjectLinks;
|
|
70300
71127
|
}
|
|
70301
71128
|
|
|
@@ -70313,7 +71140,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
70313
71140
|
* API identifier of an object
|
|
70314
71141
|
*/
|
|
70315
71142
|
'id': string;
|
|
70316
|
-
'attributes'?:
|
|
71143
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70317
71144
|
}
|
|
70318
71145
|
|
|
70319
71146
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -70334,7 +71161,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
70334
71161
|
* API identifier of an object
|
|
70335
71162
|
*/
|
|
70336
71163
|
'id'?: string;
|
|
70337
|
-
'attributes'?:
|
|
71164
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
70338
71165
|
}
|
|
70339
71166
|
|
|
70340
71167
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -83001,6 +83828,24 @@ export declare interface OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequ
|
|
|
83001
83828
|
* @extends {BaseAPI}
|
|
83002
83829
|
*/
|
|
83003
83830
|
export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implements OrganizationEntityAPIsApiInterface {
|
|
83831
|
+
/**
|
|
83832
|
+
*
|
|
83833
|
+
* @summary Add targets to IP allowlist policy
|
|
83834
|
+
* @param {OrganizationEntityAPIsApiAddTargetsRequest} requestParameters Request parameters.
|
|
83835
|
+
* @param {*} [options] Override http request option.
|
|
83836
|
+
* @throws {RequiredError}
|
|
83837
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83838
|
+
*/
|
|
83839
|
+
addTargets(requestParameters: OrganizationEntityAPIsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83840
|
+
/**
|
|
83841
|
+
*
|
|
83842
|
+
* @summary Post IpAllowlistPolicy entities
|
|
83843
|
+
* @param {OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83844
|
+
* @param {*} [options] Override http request option.
|
|
83845
|
+
* @throws {RequiredError}
|
|
83846
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83847
|
+
*/
|
|
83848
|
+
createEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83004
83849
|
/**
|
|
83005
83850
|
*
|
|
83006
83851
|
* @summary Post Organization Setting entities
|
|
@@ -83010,6 +83855,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83010
83855
|
* @memberof OrganizationEntityAPIsApi
|
|
83011
83856
|
*/
|
|
83012
83857
|
createEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiCreateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
83858
|
+
/**
|
|
83859
|
+
*
|
|
83860
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
83861
|
+
* @param {OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83862
|
+
* @param {*} [options] Override http request option.
|
|
83863
|
+
* @throws {RequiredError}
|
|
83864
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83865
|
+
*/
|
|
83866
|
+
deleteEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83013
83867
|
/**
|
|
83014
83868
|
*
|
|
83015
83869
|
* @summary Delete Organization Setting entity
|
|
@@ -83019,6 +83873,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83019
83873
|
* @memberof OrganizationEntityAPIsApi
|
|
83020
83874
|
*/
|
|
83021
83875
|
deleteEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiDeleteEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83876
|
+
/**
|
|
83877
|
+
*
|
|
83878
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
83879
|
+
* @param {OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83880
|
+
* @param {*} [options] Override http request option.
|
|
83881
|
+
* @throws {RequiredError}
|
|
83882
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83883
|
+
*/
|
|
83884
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters?: OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
83022
83885
|
/**
|
|
83023
83886
|
*
|
|
83024
83887
|
* @summary Get Organization Setting entities
|
|
@@ -83028,6 +83891,15 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83028
83891
|
* @memberof OrganizationEntityAPIsApi
|
|
83029
83892
|
*/
|
|
83030
83893
|
getAllEntitiesOrganizationSettings(requestParameters?: OrganizationEntityAPIsApiGetAllEntitiesOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutList>;
|
|
83894
|
+
/**
|
|
83895
|
+
*
|
|
83896
|
+
* @summary Get IpAllowlistPolicy entity
|
|
83897
|
+
* @param {OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83898
|
+
* @param {*} [options] Override http request option.
|
|
83899
|
+
* @throws {RequiredError}
|
|
83900
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83901
|
+
*/
|
|
83902
|
+
getEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83031
83903
|
/**
|
|
83032
83904
|
*
|
|
83033
83905
|
* @summary Get Organization Setting entity
|
|
@@ -83073,6 +83945,24 @@ export declare class OrganizationEntityAPIsApi extends MetadataBaseApi implement
|
|
|
83073
83945
|
* @memberof OrganizationEntityAPIsApi
|
|
83074
83946
|
*/
|
|
83075
83947
|
patchEntityOrganizations(requestParameters: OrganizationEntityAPIsApiPatchEntityOrganizationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationOutDocument>;
|
|
83948
|
+
/**
|
|
83949
|
+
*
|
|
83950
|
+
* @summary Remove targets from IP allowlist policy
|
|
83951
|
+
* @param {OrganizationEntityAPIsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
83952
|
+
* @param {*} [options] Override http request option.
|
|
83953
|
+
* @throws {RequiredError}
|
|
83954
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83955
|
+
*/
|
|
83956
|
+
removeTargets(requestParameters: OrganizationEntityAPIsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83957
|
+
/**
|
|
83958
|
+
*
|
|
83959
|
+
* @summary Put IpAllowlistPolicy entity
|
|
83960
|
+
* @param {OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
83961
|
+
* @param {*} [options] Override http request option.
|
|
83962
|
+
* @throws {RequiredError}
|
|
83963
|
+
* @memberof OrganizationEntityAPIsApi
|
|
83964
|
+
*/
|
|
83965
|
+
updateEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83076
83966
|
/**
|
|
83077
83967
|
*
|
|
83078
83968
|
* @summary Put Organization Setting entity
|
|
@@ -83213,6 +84103,26 @@ export declare function OrganizationEntityAPIsApi_UpdateEntityOrganizations(axio
|
|
|
83213
84103
|
*/
|
|
83214
84104
|
export declare function OrganizationEntityAPIsApi_UpdateEntityOrganizationSettings(axios: AxiosInstance, basePath: string, requestParameters: OrganizationEntityAPIsApiUpdateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
83215
84105
|
|
|
84106
|
+
/**
|
|
84107
|
+
* Request parameters for addTargets operation in OrganizationEntityAPIsApi.
|
|
84108
|
+
* @export
|
|
84109
|
+
* @interface OrganizationEntityAPIsApiAddTargetsRequest
|
|
84110
|
+
*/
|
|
84111
|
+
export declare interface OrganizationEntityAPIsApiAddTargetsRequest {
|
|
84112
|
+
/**
|
|
84113
|
+
*
|
|
84114
|
+
* @type {string}
|
|
84115
|
+
* @memberof OrganizationEntityAPIsApiAddTargets
|
|
84116
|
+
*/
|
|
84117
|
+
readonly id: string;
|
|
84118
|
+
/**
|
|
84119
|
+
*
|
|
84120
|
+
* @type {IpAllowlistPolicyTargets}
|
|
84121
|
+
* @memberof OrganizationEntityAPIsApiAddTargets
|
|
84122
|
+
*/
|
|
84123
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
84124
|
+
}
|
|
84125
|
+
|
|
83216
84126
|
/**
|
|
83217
84127
|
*
|
|
83218
84128
|
* @summary Post Organization Setting entities
|
|
@@ -83331,6 +84241,26 @@ export declare function OrganizationEntityAPIsApiAxiosParamCreator_UpdateEntityO
|
|
|
83331
84241
|
*/
|
|
83332
84242
|
export declare function OrganizationEntityAPIsApiAxiosParamCreator_UpdateEntityOrganizationSettings(id: string, jsonApiOrganizationSettingInDocument: JsonApiOrganizationSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
83333
84243
|
|
|
84244
|
+
/**
|
|
84245
|
+
* Request parameters for createEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84246
|
+
* @export
|
|
84247
|
+
* @interface OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest
|
|
84248
|
+
*/
|
|
84249
|
+
export declare interface OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest {
|
|
84250
|
+
/**
|
|
84251
|
+
*
|
|
84252
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
84253
|
+
* @memberof OrganizationEntityAPIsApiCreateEntityIpAllowlistPolicies
|
|
84254
|
+
*/
|
|
84255
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
84256
|
+
/**
|
|
84257
|
+
* 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.
|
|
84258
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84259
|
+
* @memberof OrganizationEntityAPIsApiCreateEntityIpAllowlistPolicies
|
|
84260
|
+
*/
|
|
84261
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84262
|
+
}
|
|
84263
|
+
|
|
83334
84264
|
/**
|
|
83335
84265
|
* Request parameters for createEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83336
84266
|
* @export
|
|
@@ -83345,6 +84275,20 @@ export declare interface OrganizationEntityAPIsApiCreateEntityOrganizationSettin
|
|
|
83345
84275
|
readonly jsonApiOrganizationSettingInDocument: JsonApiOrganizationSettingInDocument;
|
|
83346
84276
|
}
|
|
83347
84277
|
|
|
84278
|
+
/**
|
|
84279
|
+
* Request parameters for deleteEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84280
|
+
* @export
|
|
84281
|
+
* @interface OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest
|
|
84282
|
+
*/
|
|
84283
|
+
export declare interface OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest {
|
|
84284
|
+
/**
|
|
84285
|
+
*
|
|
84286
|
+
* @type {string}
|
|
84287
|
+
* @memberof OrganizationEntityAPIsApiDeleteEntityIpAllowlistPolicies
|
|
84288
|
+
*/
|
|
84289
|
+
readonly id: string;
|
|
84290
|
+
}
|
|
84291
|
+
|
|
83348
84292
|
/**
|
|
83349
84293
|
* Request parameters for deleteEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83350
84294
|
* @export
|
|
@@ -83359,6 +84303,50 @@ export declare interface OrganizationEntityAPIsApiDeleteEntityOrganizationSettin
|
|
|
83359
84303
|
readonly id: string;
|
|
83360
84304
|
}
|
|
83361
84305
|
|
|
84306
|
+
/**
|
|
84307
|
+
* Request parameters for getAllEntitiesIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84308
|
+
* @export
|
|
84309
|
+
* @interface OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest
|
|
84310
|
+
*/
|
|
84311
|
+
export declare interface OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest {
|
|
84312
|
+
/**
|
|
84313
|
+
* 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\').
|
|
84314
|
+
* @type {string}
|
|
84315
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84316
|
+
*/
|
|
84317
|
+
readonly filter?: string;
|
|
84318
|
+
/**
|
|
84319
|
+
* 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.
|
|
84320
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84321
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84322
|
+
*/
|
|
84323
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84324
|
+
/**
|
|
84325
|
+
* Zero-based page index (0..N)
|
|
84326
|
+
* @type {number}
|
|
84327
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84328
|
+
*/
|
|
84329
|
+
readonly page?: number;
|
|
84330
|
+
/**
|
|
84331
|
+
* The size of the page to be returned
|
|
84332
|
+
* @type {number}
|
|
84333
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84334
|
+
*/
|
|
84335
|
+
readonly size?: number;
|
|
84336
|
+
/**
|
|
84337
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
84338
|
+
* @type {Array<string>}
|
|
84339
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84340
|
+
*/
|
|
84341
|
+
readonly sort?: Array<string>;
|
|
84342
|
+
/**
|
|
84343
|
+
* Include Meta objects.
|
|
84344
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
84345
|
+
* @memberof OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPolicies
|
|
84346
|
+
*/
|
|
84347
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
84348
|
+
}
|
|
84349
|
+
|
|
83362
84350
|
/**
|
|
83363
84351
|
* Request parameters for getAllEntitiesOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83364
84352
|
* @export
|
|
@@ -83397,6 +84385,32 @@ export declare interface OrganizationEntityAPIsApiGetAllEntitiesOrganizationSett
|
|
|
83397
84385
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
83398
84386
|
}
|
|
83399
84387
|
|
|
84388
|
+
/**
|
|
84389
|
+
* Request parameters for getEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84390
|
+
* @export
|
|
84391
|
+
* @interface OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest
|
|
84392
|
+
*/
|
|
84393
|
+
export declare interface OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest {
|
|
84394
|
+
/**
|
|
84395
|
+
*
|
|
84396
|
+
* @type {string}
|
|
84397
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84398
|
+
*/
|
|
84399
|
+
readonly id: string;
|
|
84400
|
+
/**
|
|
84401
|
+
* 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\').
|
|
84402
|
+
* @type {string}
|
|
84403
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84404
|
+
*/
|
|
84405
|
+
readonly filter?: string;
|
|
84406
|
+
/**
|
|
84407
|
+
* 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.
|
|
84408
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84409
|
+
* @memberof OrganizationEntityAPIsApiGetEntityIpAllowlistPolicies
|
|
84410
|
+
*/
|
|
84411
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84412
|
+
}
|
|
84413
|
+
|
|
83400
84414
|
/**
|
|
83401
84415
|
* Request parameters for getEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83402
84416
|
* @export
|
|
@@ -83469,6 +84483,24 @@ export declare interface OrganizationEntityAPIsApiGetOrganizationRequest {
|
|
|
83469
84483
|
* @interface OrganizationEntityAPIsApi
|
|
83470
84484
|
*/
|
|
83471
84485
|
export declare interface OrganizationEntityAPIsApiInterface {
|
|
84486
|
+
/**
|
|
84487
|
+
*
|
|
84488
|
+
* @summary Add targets to IP allowlist policy
|
|
84489
|
+
* @param {OrganizationEntityAPIsApiAddTargetsRequest} requestParameters Request parameters.
|
|
84490
|
+
* @param {*} [options] Override http request option.
|
|
84491
|
+
* @throws {RequiredError}
|
|
84492
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84493
|
+
*/
|
|
84494
|
+
addTargets(requestParameters: OrganizationEntityAPIsApiAddTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84495
|
+
/**
|
|
84496
|
+
*
|
|
84497
|
+
* @summary Post IpAllowlistPolicy entities
|
|
84498
|
+
* @param {OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84499
|
+
* @param {*} [options] Override http request option.
|
|
84500
|
+
* @throws {RequiredError}
|
|
84501
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84502
|
+
*/
|
|
84503
|
+
createEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiCreateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83472
84504
|
/**
|
|
83473
84505
|
*
|
|
83474
84506
|
* @summary Post Organization Setting entities
|
|
@@ -83478,6 +84510,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83478
84510
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83479
84511
|
*/
|
|
83480
84512
|
createEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiCreateEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutDocument>;
|
|
84513
|
+
/**
|
|
84514
|
+
*
|
|
84515
|
+
* @summary Delete IpAllowlistPolicy entity
|
|
84516
|
+
* @param {OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84517
|
+
* @param {*} [options] Override http request option.
|
|
84518
|
+
* @throws {RequiredError}
|
|
84519
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84520
|
+
*/
|
|
84521
|
+
deleteEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiDeleteEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83481
84522
|
/**
|
|
83482
84523
|
*
|
|
83483
84524
|
* @summary Delete Organization Setting entity
|
|
@@ -83487,6 +84528,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83487
84528
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83488
84529
|
*/
|
|
83489
84530
|
deleteEntityOrganizationSettings(requestParameters: OrganizationEntityAPIsApiDeleteEntityOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84531
|
+
/**
|
|
84532
|
+
*
|
|
84533
|
+
* @summary Get all IpAllowlistPolicy entities
|
|
84534
|
+
* @param {OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84535
|
+
* @param {*} [options] Override http request option.
|
|
84536
|
+
* @throws {RequiredError}
|
|
84537
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84538
|
+
*/
|
|
84539
|
+
getAllEntitiesIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetAllEntitiesIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutList>;
|
|
83490
84540
|
/**
|
|
83491
84541
|
*
|
|
83492
84542
|
* @summary Get Organization Setting entities
|
|
@@ -83496,6 +84546,15 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83496
84546
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83497
84547
|
*/
|
|
83498
84548
|
getAllEntitiesOrganizationSettings(requestParameters: OrganizationEntityAPIsApiGetAllEntitiesOrganizationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationSettingOutList>;
|
|
84549
|
+
/**
|
|
84550
|
+
*
|
|
84551
|
+
* @summary Get IpAllowlistPolicy entity
|
|
84552
|
+
* @param {OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84553
|
+
* @param {*} [options] Override http request option.
|
|
84554
|
+
* @throws {RequiredError}
|
|
84555
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84556
|
+
*/
|
|
84557
|
+
getEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiGetEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83499
84558
|
/**
|
|
83500
84559
|
*
|
|
83501
84560
|
* @summary Get Organization Setting entity
|
|
@@ -83541,6 +84600,24 @@ export declare interface OrganizationEntityAPIsApiInterface {
|
|
|
83541
84600
|
* @memberof OrganizationEntityAPIsApiInterface
|
|
83542
84601
|
*/
|
|
83543
84602
|
patchEntityOrganizations(requestParameters: OrganizationEntityAPIsApiPatchEntityOrganizationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrganizationOutDocument>;
|
|
84603
|
+
/**
|
|
84604
|
+
*
|
|
84605
|
+
* @summary Remove targets from IP allowlist policy
|
|
84606
|
+
* @param {OrganizationEntityAPIsApiRemoveTargetsRequest} requestParameters Request parameters.
|
|
84607
|
+
* @param {*} [options] Override http request option.
|
|
84608
|
+
* @throws {RequiredError}
|
|
84609
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84610
|
+
*/
|
|
84611
|
+
removeTargets(requestParameters: OrganizationEntityAPIsApiRemoveTargetsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
84612
|
+
/**
|
|
84613
|
+
*
|
|
84614
|
+
* @summary Put IpAllowlistPolicy entity
|
|
84615
|
+
* @param {OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest} requestParameters Request parameters.
|
|
84616
|
+
* @param {*} [options] Override http request option.
|
|
84617
|
+
* @throws {RequiredError}
|
|
84618
|
+
* @memberof OrganizationEntityAPIsApiInterface
|
|
84619
|
+
*/
|
|
84620
|
+
updateEntityIpAllowlistPolicies(requestParameters: OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIpAllowlistPolicyOutDocument>;
|
|
83544
84621
|
/**
|
|
83545
84622
|
*
|
|
83546
84623
|
* @summary Put Organization Setting entity
|
|
@@ -83619,6 +84696,58 @@ export declare interface OrganizationEntityAPIsApiPatchEntityOrganizationsReques
|
|
|
83619
84696
|
readonly include?: Array<'users' | 'userGroups' | 'identityProviders' | 'bootstrapUser' | 'bootstrapUserGroup' | 'identityProvider' | 'ALL'>;
|
|
83620
84697
|
}
|
|
83621
84698
|
|
|
84699
|
+
/**
|
|
84700
|
+
* Request parameters for removeTargets operation in OrganizationEntityAPIsApi.
|
|
84701
|
+
* @export
|
|
84702
|
+
* @interface OrganizationEntityAPIsApiRemoveTargetsRequest
|
|
84703
|
+
*/
|
|
84704
|
+
export declare interface OrganizationEntityAPIsApiRemoveTargetsRequest {
|
|
84705
|
+
/**
|
|
84706
|
+
*
|
|
84707
|
+
* @type {string}
|
|
84708
|
+
* @memberof OrganizationEntityAPIsApiRemoveTargets
|
|
84709
|
+
*/
|
|
84710
|
+
readonly id: string;
|
|
84711
|
+
/**
|
|
84712
|
+
*
|
|
84713
|
+
* @type {IpAllowlistPolicyTargets}
|
|
84714
|
+
* @memberof OrganizationEntityAPIsApiRemoveTargets
|
|
84715
|
+
*/
|
|
84716
|
+
readonly ipAllowlistPolicyTargets: IpAllowlistPolicyTargets;
|
|
84717
|
+
}
|
|
84718
|
+
|
|
84719
|
+
/**
|
|
84720
|
+
* Request parameters for updateEntityIpAllowlistPolicies operation in OrganizationEntityAPIsApi.
|
|
84721
|
+
* @export
|
|
84722
|
+
* @interface OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest
|
|
84723
|
+
*/
|
|
84724
|
+
export declare interface OrganizationEntityAPIsApiUpdateEntityIpAllowlistPoliciesRequest {
|
|
84725
|
+
/**
|
|
84726
|
+
*
|
|
84727
|
+
* @type {string}
|
|
84728
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84729
|
+
*/
|
|
84730
|
+
readonly id: string;
|
|
84731
|
+
/**
|
|
84732
|
+
*
|
|
84733
|
+
* @type {JsonApiIpAllowlistPolicyInDocument}
|
|
84734
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84735
|
+
*/
|
|
84736
|
+
readonly jsonApiIpAllowlistPolicyInDocument: JsonApiIpAllowlistPolicyInDocument;
|
|
84737
|
+
/**
|
|
84738
|
+
* 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\').
|
|
84739
|
+
* @type {string}
|
|
84740
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84741
|
+
*/
|
|
84742
|
+
readonly filter?: string;
|
|
84743
|
+
/**
|
|
84744
|
+
* 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.
|
|
84745
|
+
* @type {Array<'users' | 'userGroups' | 'ALL'>}
|
|
84746
|
+
* @memberof OrganizationEntityAPIsApiUpdateEntityIpAllowlistPolicies
|
|
84747
|
+
*/
|
|
84748
|
+
readonly include?: Array<'users' | 'userGroups' | 'ALL'>;
|
|
84749
|
+
}
|
|
84750
|
+
|
|
83622
84751
|
/**
|
|
83623
84752
|
* Request parameters for updateEntityOrganizationSettings operation in OrganizationEntityAPIsApi.
|
|
83624
84753
|
* @export
|
|
@@ -86612,13 +87741,13 @@ export declare interface PlatformUsage {
|
|
|
86612
87741
|
'count'?: number;
|
|
86613
87742
|
}
|
|
86614
87743
|
|
|
86615
|
-
export declare type PlatformUsageNameEnum = 'UserCount' | 'WorkspaceCount';
|
|
87744
|
+
export declare type PlatformUsageNameEnum = 'UserCount' | 'WorkspaceCount' | 'AiWorkspaceCount';
|
|
86616
87745
|
|
|
86617
87746
|
export declare interface PlatformUsageRequest {
|
|
86618
87747
|
'usageItemNames': Array<PlatformUsageRequestUsageItemNamesEnum>;
|
|
86619
87748
|
}
|
|
86620
87749
|
|
|
86621
|
-
export declare type PlatformUsageRequestUsageItemNamesEnum = 'UserCount' | 'WorkspaceCount';
|
|
87750
|
+
export declare type PlatformUsageRequestUsageItemNamesEnum = 'UserCount' | 'WorkspaceCount' | 'AiWorkspaceCount';
|
|
86622
87751
|
|
|
86623
87752
|
/**
|
|
86624
87753
|
* PluginsApi - object-oriented interface
|
|
@@ -87864,21 +88993,6 @@ export declare interface ReportingSettingsApiResolveSettingsWithoutWorkspaceRequ
|
|
|
87864
88993
|
readonly excludeUserSettings?: boolean;
|
|
87865
88994
|
}
|
|
87866
88995
|
|
|
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
88996
|
export declare interface ResolvedLlmProvider {
|
|
87883
88997
|
/**
|
|
87884
88998
|
* Provider Id
|
|
@@ -87892,14 +89006,9 @@ export declare interface ResolvedLlmProvider {
|
|
|
87892
89006
|
}
|
|
87893
89007
|
|
|
87894
89008
|
export declare interface ResolvedLlms {
|
|
87895
|
-
'data'?:
|
|
89009
|
+
'data'?: ResolvedLlmProvider;
|
|
87896
89010
|
}
|
|
87897
89011
|
|
|
87898
|
-
/**
|
|
87899
|
-
* @type ResolvedLlmsData
|
|
87900
|
-
*/
|
|
87901
|
-
export declare type ResolvedLlmsData = ResolvedLlmEndpoint | ResolvedLlmProvider;
|
|
87902
|
-
|
|
87903
89012
|
/**
|
|
87904
89013
|
* Setting and its value.
|
|
87905
89014
|
*/
|
|
@@ -87919,7 +89028,7 @@ export declare interface ResolvedSetting {
|
|
|
87919
89028
|
'type'?: ResolvedSettingTypeEnum;
|
|
87920
89029
|
}
|
|
87921
89030
|
|
|
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';
|
|
89031
|
+
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
89032
|
|
|
87924
89033
|
/**
|
|
87925
89034
|
* A request containing setting IDs to resolve.
|
|
@@ -87956,6 +89065,15 @@ export declare class ResponsesAi extends AiBaseAPI implements ResponsesAiInterfa
|
|
|
87956
89065
|
* @memberof ResponsesAi
|
|
87957
89066
|
*/
|
|
87958
89067
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
89068
|
+
/**
|
|
89069
|
+
*
|
|
89070
|
+
* @summary Post Feedback
|
|
89071
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89072
|
+
* @param {*} [options] Override http request option.
|
|
89073
|
+
* @throws {RequiredError}
|
|
89074
|
+
* @memberof ResponsesAi
|
|
89075
|
+
*/
|
|
89076
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87959
89077
|
}
|
|
87960
89078
|
|
|
87961
89079
|
/**
|
|
@@ -87986,6 +89104,20 @@ declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConver
|
|
|
87986
89104
|
export { ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch as GenAiApi_PatchConversationResponse }
|
|
87987
89105
|
export { ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch }
|
|
87988
89106
|
|
|
89107
|
+
/**
|
|
89108
|
+
*
|
|
89109
|
+
* @summary Post Feedback
|
|
89110
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
89111
|
+
* @param {string} basePath Base path.
|
|
89112
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89113
|
+
* @param {*} [options] Override http request option.
|
|
89114
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89115
|
+
* @throws {RequiredError}
|
|
89116
|
+
*/
|
|
89117
|
+
declare function ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<void>;
|
|
89118
|
+
export { ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost as GenAiApi_PostConversationFeedback }
|
|
89119
|
+
export { ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost }
|
|
89120
|
+
|
|
87989
89121
|
/**
|
|
87990
89122
|
*
|
|
87991
89123
|
* @summary Get Conversation Responses
|
|
@@ -88010,6 +89142,18 @@ export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApi
|
|
|
88010
89142
|
*/
|
|
88011
89143
|
export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
88012
89144
|
|
|
89145
|
+
/**
|
|
89146
|
+
*
|
|
89147
|
+
* @summary Post Feedback
|
|
89148
|
+
* @param {string} workspaceId
|
|
89149
|
+
* @param {string} conversationId
|
|
89150
|
+
* @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
|
|
89151
|
+
* @param {*} [options] Override http request option.
|
|
89152
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
89153
|
+
* @throws {RequiredError}
|
|
89154
|
+
*/
|
|
89155
|
+
export declare function ResponsesAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
89156
|
+
|
|
88013
89157
|
/**
|
|
88014
89158
|
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
|
|
88015
89159
|
* @export
|
|
@@ -88056,6 +89200,15 @@ export declare interface ResponsesAiInterface {
|
|
|
88056
89200
|
* @memberof ResponsesAiInterface
|
|
88057
89201
|
*/
|
|
88058
89202
|
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
89203
|
+
/**
|
|
89204
|
+
*
|
|
89205
|
+
* @summary Post Feedback
|
|
89206
|
+
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
89207
|
+
* @param {*} [options] Override http request option.
|
|
89208
|
+
* @throws {RequiredError}
|
|
89209
|
+
* @memberof ResponsesAiInterface
|
|
89210
|
+
*/
|
|
89211
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
88059
89212
|
}
|
|
88060
89213
|
|
|
88061
89214
|
/**
|
|
@@ -88092,6 +89245,34 @@ declare interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConver
|
|
|
88092
89245
|
export { ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest as GenAiApiPatchConversationResponseRequest }
|
|
88093
89246
|
export { ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest }
|
|
88094
89247
|
|
|
89248
|
+
/**
|
|
89249
|
+
* Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ResponsesAi.
|
|
89250
|
+
* @export
|
|
89251
|
+
* @interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
|
|
89252
|
+
*/
|
|
89253
|
+
declare interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
|
|
89254
|
+
/**
|
|
89255
|
+
*
|
|
89256
|
+
* @type {string}
|
|
89257
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89258
|
+
*/
|
|
89259
|
+
readonly workspaceId: string;
|
|
89260
|
+
/**
|
|
89261
|
+
*
|
|
89262
|
+
* @type {string}
|
|
89263
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89264
|
+
*/
|
|
89265
|
+
readonly conversationId: string;
|
|
89266
|
+
/**
|
|
89267
|
+
*
|
|
89268
|
+
* @type {AiConversationFeedbackRequest}
|
|
89269
|
+
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
89270
|
+
*/
|
|
89271
|
+
readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
|
|
89272
|
+
}
|
|
89273
|
+
export { ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest as GenAiApiPostConversationFeedbackRequest }
|
|
89274
|
+
export { ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest }
|
|
89275
|
+
|
|
88095
89276
|
/**
|
|
88096
89277
|
* Object identifier.
|
|
88097
89278
|
*/
|
|
@@ -89845,7 +91026,7 @@ export declare interface TestLlmProviderByIdRequest {
|
|
|
89845
91026
|
/**
|
|
89846
91027
|
* @type TestLlmProviderByIdRequestProviderConfig
|
|
89847
91028
|
*/
|
|
89848
|
-
export declare type TestLlmProviderByIdRequestProviderConfig = AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
|
|
91029
|
+
export declare type TestLlmProviderByIdRequestProviderConfig = AfmAnthropicProviderConfig | AfmAwsBedrockProviderConfig | AfmAzureFoundryProviderConfig | AfmOpenAIProviderConfig;
|
|
89849
91030
|
|
|
89850
91031
|
export declare interface TestLlmProviderDefinitionRequest {
|
|
89851
91032
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
@@ -96091,63 +97272,6 @@ export declare interface ValidateByItem {
|
|
|
96091
97272
|
'type': string;
|
|
96092
97273
|
}
|
|
96093
97274
|
|
|
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
97275
|
export declare const ValidateRelationsHeader: {
|
|
96152
97276
|
"X-GDC-VALIDATE-RELATIONS": string;
|
|
96153
97277
|
};
|