@gooddata/api-client-tiger 10.33.0-alpha.82 → 10.33.0-alpha.9
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1545 -1983
- package/esm/generated/afm-rest-api/api.d.ts +13 -376
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +4 -305
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +2 -180
- package/esm/generated/automation-json-api/api.d.ts +1 -56
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +0 -17
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -50
- package/esm/generated/export-json-api/api.d.ts +1 -56
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +0 -17
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +1 -50
- package/esm/generated/metadata-json-api/api.d.ts +1375 -1432
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +46 -65
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8420 -8471
- package/esm/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1188,10 +1188,10 @@ export declare interface ActionsApiExplainAFMRequest {
|
|
|
1188
1188
|
readonly afmExecution: AfmExecution;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
1191
|
-
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'
|
|
1191
|
+
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'}
|
|
1192
1192
|
* @memberof ActionsApiExplainAFM
|
|
1193
1193
|
*/
|
|
1194
|
-
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS"
|
|
1194
|
+
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS";
|
|
1195
1195
|
}
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
@@ -2565,20 +2565,6 @@ export declare interface ActionsApiRegisterUploadNotificationRequest {
|
|
|
2565
2565
|
readonly dataSourceId: string;
|
|
2566
2566
|
}
|
|
2567
2567
|
|
|
2568
|
-
/**
|
|
2569
|
-
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
2570
|
-
* @export
|
|
2571
|
-
* @interface ActionsApiResolveLlmEndpointsRequest
|
|
2572
|
-
*/
|
|
2573
|
-
export declare interface ActionsApiResolveLlmEndpointsRequest {
|
|
2574
|
-
/**
|
|
2575
|
-
* Workspace identifier
|
|
2576
|
-
* @type {string}
|
|
2577
|
-
* @memberof ActionsApiResolveLlmEndpoints
|
|
2578
|
-
*/
|
|
2579
|
-
readonly workspaceId: string;
|
|
2580
|
-
}
|
|
2581
|
-
|
|
2582
2568
|
/**
|
|
2583
2569
|
* Request parameters for resolveRequestedEntitlements operation in ActionsApi.
|
|
2584
2570
|
* @export
|
|
@@ -2847,20 +2833,6 @@ export declare interface ActionsApiUnsubscribeWorkspaceAutomationsRequest {
|
|
|
2847
2833
|
readonly workspaceId: string;
|
|
2848
2834
|
}
|
|
2849
2835
|
|
|
2850
|
-
/**
|
|
2851
|
-
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
2852
|
-
* @export
|
|
2853
|
-
* @interface ActionsApiValidateLLMEndpointRequest
|
|
2854
|
-
*/
|
|
2855
|
-
export declare interface ActionsApiValidateLLMEndpointRequest {
|
|
2856
|
-
/**
|
|
2857
|
-
*
|
|
2858
|
-
* @type {ValidateLLMEndpointRequest}
|
|
2859
|
-
* @memberof ActionsApiValidateLLMEndpoint
|
|
2860
|
-
*/
|
|
2861
|
-
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
2862
|
-
}
|
|
2863
|
-
|
|
2864
2836
|
/**
|
|
2865
2837
|
* Request parameters for workspaceResolveAllSettings operation in ActionsApi.
|
|
2866
2838
|
* @export
|
|
@@ -4632,15 +4604,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
4632
4604
|
* @memberof ActionsApi
|
|
4633
4605
|
*/
|
|
4634
4606
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<KeyDriversResult, any>>;
|
|
4635
|
-
/**
|
|
4636
|
-
* Returns a list of available LLM Endpoints
|
|
4637
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
4638
|
-
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
4639
|
-
* @param {*} [options] Override http request option.
|
|
4640
|
-
* @throws {RequiredError}
|
|
4641
|
-
* @memberof ActionsApi
|
|
4642
|
-
*/
|
|
4643
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ResolvedLlmEndpoints, any>>;
|
|
4644
4607
|
/**
|
|
4645
4608
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4646
4609
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4659,15 +4622,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
4659
4622
|
* @memberof ActionsApi
|
|
4660
4623
|
*/
|
|
4661
4624
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ExecutionResult, any>>;
|
|
4662
|
-
/**
|
|
4663
|
-
* Validates LLM endpointw with provided parameters.
|
|
4664
|
-
* @summary Validate LLM Endpoint
|
|
4665
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
4666
|
-
* @param {*} [options] Override http request option.
|
|
4667
|
-
* @throws {RequiredError}
|
|
4668
|
-
* @memberof ActionsApi
|
|
4669
|
-
*/
|
|
4670
|
-
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
4671
4625
|
}
|
|
4672
4626
|
|
|
4673
4627
|
/**
|
|
@@ -4818,11 +4772,11 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
4818
4772
|
* @summary AFM explain resource.
|
|
4819
4773
|
* @param {string} workspaceId Workspace identifier
|
|
4820
4774
|
* @param {AfmExecution} afmExecution
|
|
4821
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'
|
|
4775
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
4822
4776
|
* @param {*} [options] Override http request option.
|
|
4823
4777
|
* @throws {RequiredError}
|
|
4824
4778
|
*/
|
|
4825
|
-
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS"
|
|
4779
|
+
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
4826
4780
|
/**
|
|
4827
4781
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4828
4782
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4866,14 +4820,6 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
4866
4820
|
* @throws {RequiredError}
|
|
4867
4821
|
*/
|
|
4868
4822
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
4869
|
-
/**
|
|
4870
|
-
* Returns a list of available LLM Endpoints
|
|
4871
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
4872
|
-
* @param {string} workspaceId Workspace identifier
|
|
4873
|
-
* @param {*} [options] Override http request option.
|
|
4874
|
-
* @throws {RequiredError}
|
|
4875
|
-
*/
|
|
4876
|
-
resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
4877
4823
|
/**
|
|
4878
4824
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4879
4825
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4896,14 +4842,6 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
4896
4842
|
* @throws {RequiredError}
|
|
4897
4843
|
*/
|
|
4898
4844
|
retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
4899
|
-
/**
|
|
4900
|
-
* Validates LLM endpointw with provided parameters.
|
|
4901
|
-
* @summary Validate LLM Endpoint
|
|
4902
|
-
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
4903
|
-
* @param {*} [options] Override http request option.
|
|
4904
|
-
* @throws {RequiredError}
|
|
4905
|
-
*/
|
|
4906
|
-
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
4907
4845
|
};
|
|
4908
4846
|
|
|
4909
4847
|
/**
|
|
@@ -5063,14 +5001,6 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5063
5001
|
* @throws {RequiredError}
|
|
5064
5002
|
*/
|
|
5065
5003
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
5066
|
-
/**
|
|
5067
|
-
* Returns a list of available LLM Endpoints
|
|
5068
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5069
|
-
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5070
|
-
* @param {*} [options] Override http request option.
|
|
5071
|
-
* @throws {RequiredError}
|
|
5072
|
-
*/
|
|
5073
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
5074
5004
|
/**
|
|
5075
5005
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
5076
5006
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -5087,14 +5017,6 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5087
5017
|
* @throws {RequiredError}
|
|
5088
5018
|
*/
|
|
5089
5019
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
5090
|
-
/**
|
|
5091
|
-
* Validates LLM endpointw with provided parameters.
|
|
5092
|
-
* @summary Validate LLM Endpoint
|
|
5093
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5094
|
-
* @param {*} [options] Override http request option.
|
|
5095
|
-
* @throws {RequiredError}
|
|
5096
|
-
*/
|
|
5097
|
-
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5098
5020
|
};
|
|
5099
5021
|
|
|
5100
5022
|
/**
|
|
@@ -5245,11 +5167,11 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5245
5167
|
* @summary AFM explain resource.
|
|
5246
5168
|
* @param {string} workspaceId Workspace identifier
|
|
5247
5169
|
* @param {AfmExecution} afmExecution
|
|
5248
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'
|
|
5170
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5249
5171
|
* @param {*} [options] Override http request option.
|
|
5250
5172
|
* @throws {RequiredError}
|
|
5251
5173
|
*/
|
|
5252
|
-
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS"
|
|
5174
|
+
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
5253
5175
|
/**
|
|
5254
5176
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
5255
5177
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -5293,14 +5215,6 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5293
5215
|
* @throws {RequiredError}
|
|
5294
5216
|
*/
|
|
5295
5217
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
5296
|
-
/**
|
|
5297
|
-
* Returns a list of available LLM Endpoints
|
|
5298
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5299
|
-
* @param {string} workspaceId Workspace identifier
|
|
5300
|
-
* @param {*} [options] Override http request option.
|
|
5301
|
-
* @throws {RequiredError}
|
|
5302
|
-
*/
|
|
5303
|
-
resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
|
|
5304
5218
|
/**
|
|
5305
5219
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
5306
5220
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -5323,14 +5237,6 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5323
5237
|
* @throws {RequiredError}
|
|
5324
5238
|
*/
|
|
5325
5239
|
retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
|
|
5326
|
-
/**
|
|
5327
|
-
* Validates LLM endpointw with provided parameters.
|
|
5328
|
-
* @summary Validate LLM Endpoint
|
|
5329
|
-
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
5330
|
-
* @param {*} [options] Override http request option.
|
|
5331
|
-
* @throws {RequiredError}
|
|
5332
|
-
*/
|
|
5333
|
-
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
5334
5240
|
};
|
|
5335
5241
|
|
|
5336
5242
|
/**
|
|
@@ -5510,15 +5416,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
5510
5416
|
* @memberof ActionsApiInterface
|
|
5511
5417
|
*/
|
|
5512
5418
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
5513
|
-
/**
|
|
5514
|
-
* Returns a list of available LLM Endpoints
|
|
5515
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5516
|
-
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5517
|
-
* @param {*} [options] Override http request option.
|
|
5518
|
-
* @throws {RequiredError}
|
|
5519
|
-
* @memberof ActionsApiInterface
|
|
5520
|
-
*/
|
|
5521
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
5522
5419
|
/**
|
|
5523
5420
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
5524
5421
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -5537,15 +5434,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
5537
5434
|
* @memberof ActionsApiInterface
|
|
5538
5435
|
*/
|
|
5539
5436
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
5540
|
-
/**
|
|
5541
|
-
* Validates LLM endpointw with provided parameters.
|
|
5542
|
-
* @summary Validate LLM Endpoint
|
|
5543
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5544
|
-
* @param {*} [options] Override http request option.
|
|
5545
|
-
* @throws {RequiredError}
|
|
5546
|
-
* @memberof ActionsApiInterface
|
|
5547
|
-
*/
|
|
5548
|
-
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5549
5437
|
}
|
|
5550
5438
|
|
|
5551
5439
|
/**
|
|
@@ -5639,58 +5527,6 @@ export declare interface AfmAttributeItem {
|
|
|
5639
5527
|
showAllValues?: boolean;
|
|
5640
5528
|
}
|
|
5641
5529
|
|
|
5642
|
-
/**
|
|
5643
|
-
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
5644
|
-
* @export
|
|
5645
|
-
* @interface BoundedFilter
|
|
5646
|
-
*/
|
|
5647
|
-
export declare interface AfmBoundedFilter {
|
|
5648
|
-
/**
|
|
5649
|
-
*
|
|
5650
|
-
* @type {AfmObjectIdentifierDataset}
|
|
5651
|
-
* @memberof BoundedFilter
|
|
5652
|
-
*/
|
|
5653
|
-
dataset: AfmModelObjectIdentifierDataset;
|
|
5654
|
-
/**
|
|
5655
|
-
* Date granularity specifying particular date attribute in given dimension.
|
|
5656
|
-
* @type {string}
|
|
5657
|
-
* @memberof BoundedFilter
|
|
5658
|
-
*/
|
|
5659
|
-
granularity: AfmBoundedFilterGranularityEnum;
|
|
5660
|
-
/**
|
|
5661
|
-
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
5662
|
-
* @type {number}
|
|
5663
|
-
* @memberof BoundedFilter
|
|
5664
|
-
*/
|
|
5665
|
-
from?: number | null;
|
|
5666
|
-
/**
|
|
5667
|
-
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
5668
|
-
* @type {number}
|
|
5669
|
-
* @memberof BoundedFilter
|
|
5670
|
-
*/
|
|
5671
|
-
to?: number | null;
|
|
5672
|
-
}
|
|
5673
|
-
|
|
5674
|
-
export declare const AfmBoundedFilterGranularityEnum: {
|
|
5675
|
-
readonly MINUTE: "MINUTE";
|
|
5676
|
-
readonly HOUR: "HOUR";
|
|
5677
|
-
readonly DAY: "DAY";
|
|
5678
|
-
readonly WEEK: "WEEK";
|
|
5679
|
-
readonly MONTH: "MONTH";
|
|
5680
|
-
readonly QUARTER: "QUARTER";
|
|
5681
|
-
readonly YEAR: "YEAR";
|
|
5682
|
-
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
5683
|
-
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
5684
|
-
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
5685
|
-
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
5686
|
-
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
5687
|
-
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
5688
|
-
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
5689
|
-
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
5690
|
-
};
|
|
5691
|
-
|
|
5692
|
-
export declare type AfmBoundedFilterGranularityEnum = typeof AfmBoundedFilterGranularityEnum[keyof typeof AfmBoundedFilterGranularityEnum];
|
|
5693
|
-
|
|
5694
5530
|
/**
|
|
5695
5531
|
* Any information related to cancellation.
|
|
5696
5532
|
* @export
|
|
@@ -6805,7 +6641,7 @@ export declare const AfmRankingFilterRankingFilterOperatorEnum: {
|
|
|
6805
6641
|
export declare type AfmRankingFilterRankingFilterOperatorEnum = typeof AfmRankingFilterRankingFilterOperatorEnum[keyof typeof AfmRankingFilterRankingFilterOperatorEnum];
|
|
6806
6642
|
|
|
6807
6643
|
/**
|
|
6808
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
6644
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
6809
6645
|
* @export
|
|
6810
6646
|
* @interface RelativeDateFilter
|
|
6811
6647
|
*/
|
|
@@ -6854,12 +6690,6 @@ export declare interface AfmRelativeDateFilterRelativeDateFilter {
|
|
|
6854
6690
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
6855
6691
|
*/
|
|
6856
6692
|
applyOnResult?: boolean;
|
|
6857
|
-
/**
|
|
6858
|
-
*
|
|
6859
|
-
* @type {BoundedFilter}
|
|
6860
|
-
* @memberof RelativeDateFilterRelativeDateFilter
|
|
6861
|
-
*/
|
|
6862
|
-
boundedFilter?: AfmBoundedFilter;
|
|
6863
6693
|
/**
|
|
6864
6694
|
*
|
|
6865
6695
|
* @type {AfmObjectIdentifierDataset}
|
|
@@ -7630,7 +7460,6 @@ export declare const ApiEntitlementNameEnum: {
|
|
|
7630
7460
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
7631
7461
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
7632
7462
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
7633
|
-
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
7634
7463
|
};
|
|
7635
7464
|
|
|
7636
7465
|
export declare type ApiEntitlementNameEnum = typeof ApiEntitlementNameEnum[keyof typeof ApiEntitlementNameEnum];
|
|
@@ -11197,58 +11026,6 @@ export declare class AutomationBaseAPI {
|
|
|
11197
11026
|
constructor(configuration?: AutomationConfiguration, basePath?: string, axios?: AxiosInstance);
|
|
11198
11027
|
}
|
|
11199
11028
|
|
|
11200
|
-
/**
|
|
11201
|
-
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
11202
|
-
* @export
|
|
11203
|
-
* @interface AutomationBoundedFilter
|
|
11204
|
-
*/
|
|
11205
|
-
export declare interface AutomationBoundedFilter {
|
|
11206
|
-
/**
|
|
11207
|
-
*
|
|
11208
|
-
* @type {AutomationAfmObjectIdentifierDataset}
|
|
11209
|
-
* @memberof AutomationBoundedFilter
|
|
11210
|
-
*/
|
|
11211
|
-
dataset: AutomationAfmObjectIdentifierDataset;
|
|
11212
|
-
/**
|
|
11213
|
-
* Date granularity specifying particular date attribute in given dimension.
|
|
11214
|
-
* @type {string}
|
|
11215
|
-
* @memberof AutomationBoundedFilter
|
|
11216
|
-
*/
|
|
11217
|
-
granularity: AutomationBoundedFilterGranularityEnum;
|
|
11218
|
-
/**
|
|
11219
|
-
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
11220
|
-
* @type {number}
|
|
11221
|
-
* @memberof AutomationBoundedFilter
|
|
11222
|
-
*/
|
|
11223
|
-
from?: number | null;
|
|
11224
|
-
/**
|
|
11225
|
-
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
11226
|
-
* @type {number}
|
|
11227
|
-
* @memberof AutomationBoundedFilter
|
|
11228
|
-
*/
|
|
11229
|
-
to?: number | null;
|
|
11230
|
-
}
|
|
11231
|
-
|
|
11232
|
-
export declare const AutomationBoundedFilterGranularityEnum: {
|
|
11233
|
-
readonly MINUTE: "MINUTE";
|
|
11234
|
-
readonly HOUR: "HOUR";
|
|
11235
|
-
readonly DAY: "DAY";
|
|
11236
|
-
readonly WEEK: "WEEK";
|
|
11237
|
-
readonly MONTH: "MONTH";
|
|
11238
|
-
readonly QUARTER: "QUARTER";
|
|
11239
|
-
readonly YEAR: "YEAR";
|
|
11240
|
-
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
11241
|
-
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
11242
|
-
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
11243
|
-
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
11244
|
-
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
11245
|
-
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
11246
|
-
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
11247
|
-
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
11248
|
-
};
|
|
11249
|
-
|
|
11250
|
-
export declare type AutomationBoundedFilterGranularityEnum = typeof AutomationBoundedFilterGranularityEnum[keyof typeof AutomationBoundedFilterGranularityEnum];
|
|
11251
|
-
|
|
11252
11029
|
/**
|
|
11253
11030
|
*
|
|
11254
11031
|
* @export
|
|
@@ -13076,7 +12853,7 @@ export declare interface AutomationRelative {
|
|
|
13076
12853
|
}
|
|
13077
12854
|
|
|
13078
12855
|
/**
|
|
13079
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
12856
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
13080
12857
|
* @export
|
|
13081
12858
|
* @interface AutomationRelativeDateFilter
|
|
13082
12859
|
*/
|
|
@@ -13125,12 +12902,6 @@ export declare interface AutomationRelativeDateFilterRelativeDateFilter {
|
|
|
13125
12902
|
* @memberof AutomationRelativeDateFilterRelativeDateFilter
|
|
13126
12903
|
*/
|
|
13127
12904
|
applyOnResult?: boolean;
|
|
13128
|
-
/**
|
|
13129
|
-
*
|
|
13130
|
-
* @type {AutomationBoundedFilter}
|
|
13131
|
-
* @memberof AutomationRelativeDateFilterRelativeDateFilter
|
|
13132
|
-
*/
|
|
13133
|
-
boundedFilter?: AutomationBoundedFilter;
|
|
13134
12905
|
/**
|
|
13135
12906
|
*
|
|
13136
12907
|
* @type {AutomationAfmObjectIdentifierDataset}
|
|
@@ -14911,58 +14682,6 @@ export declare interface AvailableDriversApiInterface {
|
|
|
14911
14682
|
}>;
|
|
14912
14683
|
}
|
|
14913
14684
|
|
|
14914
|
-
/**
|
|
14915
|
-
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
14916
|
-
* @export
|
|
14917
|
-
* @interface BoundedFilter
|
|
14918
|
-
*/
|
|
14919
|
-
export declare interface BoundedFilter {
|
|
14920
|
-
/**
|
|
14921
|
-
*
|
|
14922
|
-
* @type {AfmObjectIdentifierDataset}
|
|
14923
|
-
* @memberof BoundedFilter
|
|
14924
|
-
*/
|
|
14925
|
-
dataset: AfmObjectIdentifierDataset;
|
|
14926
|
-
/**
|
|
14927
|
-
* Date granularity specifying particular date attribute in given dimension.
|
|
14928
|
-
* @type {string}
|
|
14929
|
-
* @memberof BoundedFilter
|
|
14930
|
-
*/
|
|
14931
|
-
granularity: BoundedFilterGranularityEnum;
|
|
14932
|
-
/**
|
|
14933
|
-
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
14934
|
-
* @type {number}
|
|
14935
|
-
* @memberof BoundedFilter
|
|
14936
|
-
*/
|
|
14937
|
-
from?: number | null;
|
|
14938
|
-
/**
|
|
14939
|
-
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
14940
|
-
* @type {number}
|
|
14941
|
-
* @memberof BoundedFilter
|
|
14942
|
-
*/
|
|
14943
|
-
to?: number | null;
|
|
14944
|
-
}
|
|
14945
|
-
|
|
14946
|
-
export declare const BoundedFilterGranularityEnum: {
|
|
14947
|
-
readonly MINUTE: "MINUTE";
|
|
14948
|
-
readonly HOUR: "HOUR";
|
|
14949
|
-
readonly DAY: "DAY";
|
|
14950
|
-
readonly WEEK: "WEEK";
|
|
14951
|
-
readonly MONTH: "MONTH";
|
|
14952
|
-
readonly QUARTER: "QUARTER";
|
|
14953
|
-
readonly YEAR: "YEAR";
|
|
14954
|
-
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
14955
|
-
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
14956
|
-
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
14957
|
-
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
14958
|
-
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
14959
|
-
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
14960
|
-
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
14961
|
-
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
14962
|
-
};
|
|
14963
|
-
|
|
14964
|
-
export declare type BoundedFilterGranularityEnum = typeof BoundedFilterGranularityEnum[keyof typeof BoundedFilterGranularityEnum];
|
|
14965
|
-
|
|
14966
14685
|
/**
|
|
14967
14686
|
* Information about a period in time and how much cached data was removed.
|
|
14968
14687
|
* @export
|
|
@@ -41613,7 +41332,6 @@ export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
|
41613
41332
|
readonly SCHEDULED_ACTION_MINIMUM_RECURRENCE_MINUTES: "ScheduledActionMinimumRecurrenceMinutes";
|
|
41614
41333
|
readonly FEDERATED_IDENTITY_MANAGEMENT: "FederatedIdentityManagement";
|
|
41615
41334
|
readonly AUDIT_LOGGING: "AuditLogging";
|
|
41616
|
-
readonly CONTROLLED_FEATURE_ROLLOUT: "ControlledFeatureRollout";
|
|
41617
41335
|
};
|
|
41618
41336
|
|
|
41619
41337
|
export declare type EntitlementsRequestEntitlementsNameEnum = typeof EntitlementsRequestEntitlementsNameEnum[keyof typeof EntitlementsRequestEntitlementsNameEnum];
|
|
@@ -42353,58 +42071,6 @@ export declare class ExportBaseAPI {
|
|
|
42353
42071
|
constructor(configuration?: ExportConfiguration, basePath?: string, axios?: AxiosInstance);
|
|
42354
42072
|
}
|
|
42355
42073
|
|
|
42356
|
-
/**
|
|
42357
|
-
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
42358
|
-
* @export
|
|
42359
|
-
* @interface ExportBoundedFilter
|
|
42360
|
-
*/
|
|
42361
|
-
export declare interface ExportBoundedFilter {
|
|
42362
|
-
/**
|
|
42363
|
-
*
|
|
42364
|
-
* @type {ExportAfmObjectIdentifierDataset}
|
|
42365
|
-
* @memberof ExportBoundedFilter
|
|
42366
|
-
*/
|
|
42367
|
-
dataset: ExportAfmObjectIdentifierDataset;
|
|
42368
|
-
/**
|
|
42369
|
-
* Date granularity specifying particular date attribute in given dimension.
|
|
42370
|
-
* @type {string}
|
|
42371
|
-
* @memberof ExportBoundedFilter
|
|
42372
|
-
*/
|
|
42373
|
-
granularity: ExportBoundedFilterGranularityEnum;
|
|
42374
|
-
/**
|
|
42375
|
-
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
42376
|
-
* @type {number}
|
|
42377
|
-
* @memberof ExportBoundedFilter
|
|
42378
|
-
*/
|
|
42379
|
-
from?: number | null;
|
|
42380
|
-
/**
|
|
42381
|
-
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
42382
|
-
* @type {number}
|
|
42383
|
-
* @memberof ExportBoundedFilter
|
|
42384
|
-
*/
|
|
42385
|
-
to?: number | null;
|
|
42386
|
-
}
|
|
42387
|
-
|
|
42388
|
-
export declare const ExportBoundedFilterGranularityEnum: {
|
|
42389
|
-
readonly MINUTE: "MINUTE";
|
|
42390
|
-
readonly HOUR: "HOUR";
|
|
42391
|
-
readonly DAY: "DAY";
|
|
42392
|
-
readonly WEEK: "WEEK";
|
|
42393
|
-
readonly MONTH: "MONTH";
|
|
42394
|
-
readonly QUARTER: "QUARTER";
|
|
42395
|
-
readonly YEAR: "YEAR";
|
|
42396
|
-
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
42397
|
-
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
42398
|
-
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
42399
|
-
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
42400
|
-
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
42401
|
-
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
42402
|
-
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
42403
|
-
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
42404
|
-
};
|
|
42405
|
-
|
|
42406
|
-
export declare type ExportBoundedFilterGranularityEnum = typeof ExportBoundedFilterGranularityEnum[keyof typeof ExportBoundedFilterGranularityEnum];
|
|
42407
|
-
|
|
42408
42074
|
/**
|
|
42409
42075
|
* Filter the result by comparing specified metric to given constant value, using given comparison operator.
|
|
42410
42076
|
* @export
|
|
@@ -44287,7 +43953,7 @@ export declare const ExportRawExportRequestFormatEnum: {
|
|
|
44287
43953
|
export declare type ExportRawExportRequestFormatEnum = typeof ExportRawExportRequestFormatEnum[keyof typeof ExportRawExportRequestFormatEnum];
|
|
44288
43954
|
|
|
44289
43955
|
/**
|
|
44290
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
43956
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
44291
43957
|
* @export
|
|
44292
43958
|
* @interface ExportRelativeDateFilter
|
|
44293
43959
|
*/
|
|
@@ -44336,12 +44002,6 @@ export declare interface ExportRelativeDateFilterRelativeDateFilter {
|
|
|
44336
44002
|
* @memberof ExportRelativeDateFilterRelativeDateFilter
|
|
44337
44003
|
*/
|
|
44338
44004
|
applyOnResult?: boolean;
|
|
44339
|
-
/**
|
|
44340
|
-
*
|
|
44341
|
-
* @type {ExportBoundedFilter}
|
|
44342
|
-
* @memberof ExportRelativeDateFilterRelativeDateFilter
|
|
44343
|
-
*/
|
|
44344
|
-
boundedFilter?: ExportBoundedFilter;
|
|
44345
44005
|
/**
|
|
44346
44006
|
*
|
|
44347
44007
|
* @type {ExportAfmObjectIdentifierDataset}
|
|
@@ -48166,48 +47826,10 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
48166
47826
|
id: string;
|
|
48167
47827
|
/**
|
|
48168
47828
|
*
|
|
48169
|
-
* @type {
|
|
47829
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
48170
47830
|
* @memberof JsonApiAnalyticalDashboardIn
|
|
48171
47831
|
*/
|
|
48172
|
-
attributes:
|
|
48173
|
-
}
|
|
48174
|
-
|
|
48175
|
-
/**
|
|
48176
|
-
*
|
|
48177
|
-
* @export
|
|
48178
|
-
* @interface JsonApiAnalyticalDashboardInAttributes
|
|
48179
|
-
*/
|
|
48180
|
-
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
48181
|
-
/**
|
|
48182
|
-
*
|
|
48183
|
-
* @type {string}
|
|
48184
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
48185
|
-
*/
|
|
48186
|
-
title?: string;
|
|
48187
|
-
/**
|
|
48188
|
-
*
|
|
48189
|
-
* @type {string}
|
|
48190
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
48191
|
-
*/
|
|
48192
|
-
description?: string;
|
|
48193
|
-
/**
|
|
48194
|
-
*
|
|
48195
|
-
* @type {Array<string>}
|
|
48196
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
48197
|
-
*/
|
|
48198
|
-
tags?: Array<string>;
|
|
48199
|
-
/**
|
|
48200
|
-
*
|
|
48201
|
-
* @type {boolean}
|
|
48202
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
48203
|
-
*/
|
|
48204
|
-
areRelationsValid?: boolean;
|
|
48205
|
-
/**
|
|
48206
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
48207
|
-
* @type {object}
|
|
48208
|
-
* @memberof JsonApiAnalyticalDashboardInAttributes
|
|
48209
|
-
*/
|
|
48210
|
-
content: object;
|
|
47832
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48211
47833
|
}
|
|
48212
47834
|
|
|
48213
47835
|
/**
|
|
@@ -48346,10 +47968,10 @@ export declare interface JsonApiAnalyticalDashboardOutList {
|
|
|
48346
47968
|
links?: ListLinks;
|
|
48347
47969
|
/**
|
|
48348
47970
|
*
|
|
48349
|
-
* @type {
|
|
47971
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
48350
47972
|
* @memberof JsonApiAnalyticalDashboardOutList
|
|
48351
47973
|
*/
|
|
48352
|
-
meta?:
|
|
47974
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
48353
47975
|
/**
|
|
48354
47976
|
* Included resources
|
|
48355
47977
|
* @type {Array<JsonApiAnalyticalDashboardOutIncludes>}
|
|
@@ -48684,10 +48306,10 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
48684
48306
|
id?: string;
|
|
48685
48307
|
/**
|
|
48686
48308
|
*
|
|
48687
|
-
* @type {
|
|
48309
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
48688
48310
|
* @memberof JsonApiAnalyticalDashboardPostOptionalId
|
|
48689
48311
|
*/
|
|
48690
|
-
attributes:
|
|
48312
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
48691
48313
|
}
|
|
48692
48314
|
|
|
48693
48315
|
/**
|
|
@@ -48837,10 +48459,24 @@ export declare interface JsonApiApiTokenOutList {
|
|
|
48837
48459
|
links?: ListLinks;
|
|
48838
48460
|
/**
|
|
48839
48461
|
*
|
|
48840
|
-
* @type {
|
|
48462
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
48841
48463
|
* @memberof JsonApiApiTokenOutList
|
|
48842
48464
|
*/
|
|
48843
|
-
meta?:
|
|
48465
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
48466
|
+
}
|
|
48467
|
+
|
|
48468
|
+
/**
|
|
48469
|
+
*
|
|
48470
|
+
* @export
|
|
48471
|
+
* @interface JsonApiApiTokenOutListMeta
|
|
48472
|
+
*/
|
|
48473
|
+
export declare interface JsonApiApiTokenOutListMeta {
|
|
48474
|
+
/**
|
|
48475
|
+
*
|
|
48476
|
+
* @type {PageMetadata}
|
|
48477
|
+
* @memberof JsonApiApiTokenOutListMeta
|
|
48478
|
+
*/
|
|
48479
|
+
page?: PageMetadata;
|
|
48844
48480
|
}
|
|
48845
48481
|
|
|
48846
48482
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -48907,48 +48543,10 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
48907
48543
|
id: string;
|
|
48908
48544
|
/**
|
|
48909
48545
|
*
|
|
48910
|
-
* @type {
|
|
48546
|
+
* @type {JsonApiAttributeHierarchyPatchAttributes}
|
|
48911
48547
|
* @memberof JsonApiAttributeHierarchyIn
|
|
48912
48548
|
*/
|
|
48913
|
-
attributes?:
|
|
48914
|
-
}
|
|
48915
|
-
|
|
48916
|
-
/**
|
|
48917
|
-
*
|
|
48918
|
-
* @export
|
|
48919
|
-
* @interface JsonApiAttributeHierarchyInAttributes
|
|
48920
|
-
*/
|
|
48921
|
-
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
48922
|
-
/**
|
|
48923
|
-
*
|
|
48924
|
-
* @type {string}
|
|
48925
|
-
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
48926
|
-
*/
|
|
48927
|
-
title?: string;
|
|
48928
|
-
/**
|
|
48929
|
-
*
|
|
48930
|
-
* @type {string}
|
|
48931
|
-
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
48932
|
-
*/
|
|
48933
|
-
description?: string;
|
|
48934
|
-
/**
|
|
48935
|
-
*
|
|
48936
|
-
* @type {Array<string>}
|
|
48937
|
-
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
48938
|
-
*/
|
|
48939
|
-
tags?: Array<string>;
|
|
48940
|
-
/**
|
|
48941
|
-
*
|
|
48942
|
-
* @type {boolean}
|
|
48943
|
-
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
48944
|
-
*/
|
|
48945
|
-
areRelationsValid?: boolean;
|
|
48946
|
-
/**
|
|
48947
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48948
|
-
* @type {object}
|
|
48949
|
-
* @memberof JsonApiAttributeHierarchyInAttributes
|
|
48950
|
-
*/
|
|
48951
|
-
content?: object;
|
|
48549
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
48952
48550
|
}
|
|
48953
48551
|
|
|
48954
48552
|
/**
|
|
@@ -49137,10 +48735,10 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
49137
48735
|
links?: ListLinks;
|
|
49138
48736
|
/**
|
|
49139
48737
|
*
|
|
49140
|
-
* @type {
|
|
48738
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
49141
48739
|
* @memberof JsonApiAttributeHierarchyOutList
|
|
49142
48740
|
*/
|
|
49143
|
-
meta?:
|
|
48741
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
49144
48742
|
/**
|
|
49145
48743
|
* Included resources
|
|
49146
48744
|
* @type {Array<JsonApiAttributeHierarchyOutIncludes>}
|
|
@@ -49251,10 +48849,48 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
49251
48849
|
id: string;
|
|
49252
48850
|
/**
|
|
49253
48851
|
*
|
|
49254
|
-
* @type {
|
|
48852
|
+
* @type {JsonApiAttributeHierarchyPatchAttributes}
|
|
49255
48853
|
* @memberof JsonApiAttributeHierarchyPatch
|
|
49256
48854
|
*/
|
|
49257
|
-
attributes?:
|
|
48855
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
48856
|
+
}
|
|
48857
|
+
|
|
48858
|
+
/**
|
|
48859
|
+
*
|
|
48860
|
+
* @export
|
|
48861
|
+
* @interface JsonApiAttributeHierarchyPatchAttributes
|
|
48862
|
+
*/
|
|
48863
|
+
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
48864
|
+
/**
|
|
48865
|
+
*
|
|
48866
|
+
* @type {string}
|
|
48867
|
+
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
48868
|
+
*/
|
|
48869
|
+
title?: string;
|
|
48870
|
+
/**
|
|
48871
|
+
*
|
|
48872
|
+
* @type {string}
|
|
48873
|
+
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
48874
|
+
*/
|
|
48875
|
+
description?: string;
|
|
48876
|
+
/**
|
|
48877
|
+
*
|
|
48878
|
+
* @type {Array<string>}
|
|
48879
|
+
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
48880
|
+
*/
|
|
48881
|
+
tags?: Array<string>;
|
|
48882
|
+
/**
|
|
48883
|
+
*
|
|
48884
|
+
* @type {boolean}
|
|
48885
|
+
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
48886
|
+
*/
|
|
48887
|
+
areRelationsValid?: boolean;
|
|
48888
|
+
/**
|
|
48889
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
48890
|
+
* @type {object}
|
|
48891
|
+
* @memberof JsonApiAttributeHierarchyPatchAttributes
|
|
48892
|
+
*/
|
|
48893
|
+
content?: object;
|
|
49258
48894
|
}
|
|
49259
48895
|
|
|
49260
48896
|
/**
|
|
@@ -49494,10 +49130,10 @@ export declare interface JsonApiAttributeOutList {
|
|
|
49494
49130
|
links?: ListLinks;
|
|
49495
49131
|
/**
|
|
49496
49132
|
*
|
|
49497
|
-
* @type {
|
|
49133
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
49498
49134
|
* @memberof JsonApiAttributeOutList
|
|
49499
49135
|
*/
|
|
49500
|
-
meta?:
|
|
49136
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
49501
49137
|
/**
|
|
49502
49138
|
* Included resources
|
|
49503
49139
|
* @type {Array<JsonApiAttributeOutIncludes>}
|
|
@@ -49663,310 +49299,16 @@ export declare interface JsonApiAutomationIn {
|
|
|
49663
49299
|
id: string;
|
|
49664
49300
|
/**
|
|
49665
49301
|
*
|
|
49666
|
-
* @type {
|
|
49302
|
+
* @type {JsonApiAutomationPatchAttributes}
|
|
49667
49303
|
* @memberof JsonApiAutomationIn
|
|
49668
49304
|
*/
|
|
49669
|
-
attributes?:
|
|
49305
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
49670
49306
|
/**
|
|
49671
49307
|
*
|
|
49672
|
-
* @type {
|
|
49308
|
+
* @type {JsonApiAutomationPatchRelationships}
|
|
49673
49309
|
* @memberof JsonApiAutomationIn
|
|
49674
49310
|
*/
|
|
49675
|
-
relationships?:
|
|
49676
|
-
}
|
|
49677
|
-
|
|
49678
|
-
/**
|
|
49679
|
-
*
|
|
49680
|
-
* @export
|
|
49681
|
-
* @interface JsonApiAutomationInAttributes
|
|
49682
|
-
*/
|
|
49683
|
-
export declare interface JsonApiAutomationInAttributes {
|
|
49684
|
-
/**
|
|
49685
|
-
*
|
|
49686
|
-
* @type {string}
|
|
49687
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49688
|
-
*/
|
|
49689
|
-
title?: string;
|
|
49690
|
-
/**
|
|
49691
|
-
*
|
|
49692
|
-
* @type {string}
|
|
49693
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49694
|
-
*/
|
|
49695
|
-
description?: string;
|
|
49696
|
-
/**
|
|
49697
|
-
*
|
|
49698
|
-
* @type {Array<string>}
|
|
49699
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49700
|
-
*/
|
|
49701
|
-
tags?: Array<string>;
|
|
49702
|
-
/**
|
|
49703
|
-
*
|
|
49704
|
-
* @type {boolean}
|
|
49705
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49706
|
-
*/
|
|
49707
|
-
areRelationsValid?: boolean;
|
|
49708
|
-
/**
|
|
49709
|
-
* Additional details to be included in the automated message.
|
|
49710
|
-
* @type {any}
|
|
49711
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49712
|
-
*/
|
|
49713
|
-
details?: any;
|
|
49714
|
-
/**
|
|
49715
|
-
*
|
|
49716
|
-
* @type {JsonApiAutomationInAttributesMetadata}
|
|
49717
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49718
|
-
*/
|
|
49719
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
49720
|
-
/**
|
|
49721
|
-
* Current state of the automation.
|
|
49722
|
-
* @type {string}
|
|
49723
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49724
|
-
*/
|
|
49725
|
-
state?: JsonApiAutomationInAttributesStateEnum;
|
|
49726
|
-
/**
|
|
49727
|
-
*
|
|
49728
|
-
* @type {JsonApiAutomationInAttributesSchedule}
|
|
49729
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49730
|
-
*/
|
|
49731
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
49732
|
-
/**
|
|
49733
|
-
*
|
|
49734
|
-
* @type {JsonApiAutomationInAttributesAlert}
|
|
49735
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49736
|
-
*/
|
|
49737
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
49738
|
-
/**
|
|
49739
|
-
*
|
|
49740
|
-
* @type {Array<JsonApiAutomationInAttributesTabularExports>}
|
|
49741
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49742
|
-
*/
|
|
49743
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExports>;
|
|
49744
|
-
/**
|
|
49745
|
-
*
|
|
49746
|
-
* @type {Array<JsonApiAutomationInAttributesVisualExports>}
|
|
49747
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49748
|
-
*/
|
|
49749
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExports>;
|
|
49750
|
-
/**
|
|
49751
|
-
*
|
|
49752
|
-
* @type {Array<JsonApiAutomationInAttributesImageExports>}
|
|
49753
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49754
|
-
*/
|
|
49755
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExports>;
|
|
49756
|
-
/**
|
|
49757
|
-
*
|
|
49758
|
-
* @type {Array<JsonApiAutomationInAttributesRawExports>}
|
|
49759
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49760
|
-
*/
|
|
49761
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExports>;
|
|
49762
|
-
/**
|
|
49763
|
-
*
|
|
49764
|
-
* @type {Array<JsonApiAutomationInAttributesSlidesExports>}
|
|
49765
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49766
|
-
*/
|
|
49767
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExports>;
|
|
49768
|
-
/**
|
|
49769
|
-
*
|
|
49770
|
-
* @type {Array<JsonApiAutomationInAttributesDashboardTabularExports>}
|
|
49771
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49772
|
-
*/
|
|
49773
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExports>;
|
|
49774
|
-
/**
|
|
49775
|
-
* External recipients of the automation action results.
|
|
49776
|
-
* @type {Array<JsonApiAutomationInAttributesExternalRecipients>}
|
|
49777
|
-
* @memberof JsonApiAutomationInAttributes
|
|
49778
|
-
*/
|
|
49779
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipients>;
|
|
49780
|
-
}
|
|
49781
|
-
|
|
49782
|
-
/**
|
|
49783
|
-
*
|
|
49784
|
-
* @export
|
|
49785
|
-
* @interface JsonApiAutomationInAttributesAlert
|
|
49786
|
-
*/
|
|
49787
|
-
export declare interface JsonApiAutomationInAttributesAlert {
|
|
49788
|
-
/**
|
|
49789
|
-
*
|
|
49790
|
-
* @type {AlertAfm}
|
|
49791
|
-
* @memberof JsonApiAutomationInAttributesAlert
|
|
49792
|
-
*/
|
|
49793
|
-
execution: AlertAfm;
|
|
49794
|
-
/**
|
|
49795
|
-
*
|
|
49796
|
-
* @type {AlertCondition}
|
|
49797
|
-
* @memberof JsonApiAutomationInAttributesAlert
|
|
49798
|
-
*/
|
|
49799
|
-
condition: AlertCondition;
|
|
49800
|
-
/**
|
|
49801
|
-
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
49802
|
-
* @type {string}
|
|
49803
|
-
* @memberof JsonApiAutomationInAttributesAlert
|
|
49804
|
-
*/
|
|
49805
|
-
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
49806
|
-
}
|
|
49807
|
-
|
|
49808
|
-
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
49809
|
-
readonly ALWAYS: "ALWAYS";
|
|
49810
|
-
readonly ONCE: "ONCE";
|
|
49811
|
-
};
|
|
49812
|
-
|
|
49813
|
-
export declare type JsonApiAutomationInAttributesAlertTriggerEnum = typeof JsonApiAutomationInAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
49814
|
-
|
|
49815
|
-
/**
|
|
49816
|
-
*
|
|
49817
|
-
* @export
|
|
49818
|
-
* @interface JsonApiAutomationInAttributesDashboardTabularExports
|
|
49819
|
-
*/
|
|
49820
|
-
export declare interface JsonApiAutomationInAttributesDashboardTabularExports {
|
|
49821
|
-
/**
|
|
49822
|
-
*
|
|
49823
|
-
* @type {DashboardTabularExportRequestV2}
|
|
49824
|
-
* @memberof JsonApiAutomationInAttributesDashboardTabularExports
|
|
49825
|
-
*/
|
|
49826
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
49827
|
-
}
|
|
49828
|
-
|
|
49829
|
-
/**
|
|
49830
|
-
*
|
|
49831
|
-
* @export
|
|
49832
|
-
* @interface JsonApiAutomationInAttributesExternalRecipients
|
|
49833
|
-
*/
|
|
49834
|
-
export declare interface JsonApiAutomationInAttributesExternalRecipients {
|
|
49835
|
-
/**
|
|
49836
|
-
* E-mail address to send notifications from.
|
|
49837
|
-
* @type {string}
|
|
49838
|
-
* @memberof JsonApiAutomationInAttributesExternalRecipients
|
|
49839
|
-
*/
|
|
49840
|
-
email: string;
|
|
49841
|
-
}
|
|
49842
|
-
|
|
49843
|
-
/**
|
|
49844
|
-
*
|
|
49845
|
-
* @export
|
|
49846
|
-
* @interface JsonApiAutomationInAttributesImageExports
|
|
49847
|
-
*/
|
|
49848
|
-
export declare interface JsonApiAutomationInAttributesImageExports {
|
|
49849
|
-
/**
|
|
49850
|
-
*
|
|
49851
|
-
* @type {ImageExportRequest}
|
|
49852
|
-
* @memberof JsonApiAutomationInAttributesImageExports
|
|
49853
|
-
*/
|
|
49854
|
-
requestPayload: ImageExportRequest;
|
|
49855
|
-
}
|
|
49856
|
-
|
|
49857
|
-
/**
|
|
49858
|
-
* Additional information for the automation.
|
|
49859
|
-
* @export
|
|
49860
|
-
* @interface JsonApiAutomationInAttributesMetadata
|
|
49861
|
-
*/
|
|
49862
|
-
export declare interface JsonApiAutomationInAttributesMetadata {
|
|
49863
|
-
/**
|
|
49864
|
-
*
|
|
49865
|
-
* @type {string}
|
|
49866
|
-
* @memberof JsonApiAutomationInAttributesMetadata
|
|
49867
|
-
*/
|
|
49868
|
-
widget?: string;
|
|
49869
|
-
/**
|
|
49870
|
-
*
|
|
49871
|
-
* @type {Array<VisibleFilter>}
|
|
49872
|
-
* @memberof JsonApiAutomationInAttributesMetadata
|
|
49873
|
-
*/
|
|
49874
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
49875
|
-
}
|
|
49876
|
-
|
|
49877
|
-
/**
|
|
49878
|
-
*
|
|
49879
|
-
* @export
|
|
49880
|
-
* @interface JsonApiAutomationInAttributesRawExports
|
|
49881
|
-
*/
|
|
49882
|
-
export declare interface JsonApiAutomationInAttributesRawExports {
|
|
49883
|
-
/**
|
|
49884
|
-
*
|
|
49885
|
-
* @type {RawExportRequest}
|
|
49886
|
-
* @memberof JsonApiAutomationInAttributesRawExports
|
|
49887
|
-
*/
|
|
49888
|
-
requestPayload: RawExportRequest;
|
|
49889
|
-
}
|
|
49890
|
-
|
|
49891
|
-
/**
|
|
49892
|
-
*
|
|
49893
|
-
* @export
|
|
49894
|
-
* @interface JsonApiAutomationInAttributesSchedule
|
|
49895
|
-
*/
|
|
49896
|
-
export declare interface JsonApiAutomationInAttributesSchedule {
|
|
49897
|
-
/**
|
|
49898
|
-
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
49899
|
-
* @type {string}
|
|
49900
|
-
* @memberof JsonApiAutomationInAttributesSchedule
|
|
49901
|
-
*/
|
|
49902
|
-
cron: string;
|
|
49903
|
-
/**
|
|
49904
|
-
* Human-readable description of the cron expression.
|
|
49905
|
-
* @type {string}
|
|
49906
|
-
* @memberof JsonApiAutomationInAttributesSchedule
|
|
49907
|
-
*/
|
|
49908
|
-
cronDescription?: string;
|
|
49909
|
-
/**
|
|
49910
|
-
* Timezone in which the schedule is defined.
|
|
49911
|
-
* @type {string}
|
|
49912
|
-
* @memberof JsonApiAutomationInAttributesSchedule
|
|
49913
|
-
*/
|
|
49914
|
-
timezone: string;
|
|
49915
|
-
/**
|
|
49916
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
49917
|
-
* @type {string}
|
|
49918
|
-
* @memberof JsonApiAutomationInAttributesSchedule
|
|
49919
|
-
*/
|
|
49920
|
-
firstRun?: string;
|
|
49921
|
-
}
|
|
49922
|
-
|
|
49923
|
-
/**
|
|
49924
|
-
*
|
|
49925
|
-
* @export
|
|
49926
|
-
* @interface JsonApiAutomationInAttributesSlidesExports
|
|
49927
|
-
*/
|
|
49928
|
-
export declare interface JsonApiAutomationInAttributesSlidesExports {
|
|
49929
|
-
/**
|
|
49930
|
-
*
|
|
49931
|
-
* @type {SlidesExportRequest}
|
|
49932
|
-
* @memberof JsonApiAutomationInAttributesSlidesExports
|
|
49933
|
-
*/
|
|
49934
|
-
requestPayload: SlidesExportRequest;
|
|
49935
|
-
}
|
|
49936
|
-
|
|
49937
|
-
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
49938
|
-
readonly ACTIVE: "ACTIVE";
|
|
49939
|
-
readonly PAUSED: "PAUSED";
|
|
49940
|
-
};
|
|
49941
|
-
|
|
49942
|
-
export declare type JsonApiAutomationInAttributesStateEnum = typeof JsonApiAutomationInAttributesStateEnum[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
49943
|
-
|
|
49944
|
-
/**
|
|
49945
|
-
*
|
|
49946
|
-
* @export
|
|
49947
|
-
* @interface JsonApiAutomationInAttributesTabularExports
|
|
49948
|
-
*/
|
|
49949
|
-
export declare interface JsonApiAutomationInAttributesTabularExports {
|
|
49950
|
-
/**
|
|
49951
|
-
*
|
|
49952
|
-
* @type {TabularExportRequest}
|
|
49953
|
-
* @memberof JsonApiAutomationInAttributesTabularExports
|
|
49954
|
-
*/
|
|
49955
|
-
requestPayload: TabularExportRequest;
|
|
49956
|
-
}
|
|
49957
|
-
|
|
49958
|
-
/**
|
|
49959
|
-
*
|
|
49960
|
-
* @export
|
|
49961
|
-
* @interface JsonApiAutomationInAttributesVisualExports
|
|
49962
|
-
*/
|
|
49963
|
-
export declare interface JsonApiAutomationInAttributesVisualExports {
|
|
49964
|
-
/**
|
|
49965
|
-
*
|
|
49966
|
-
* @type {VisualExportRequest}
|
|
49967
|
-
* @memberof JsonApiAutomationInAttributesVisualExports
|
|
49968
|
-
*/
|
|
49969
|
-
requestPayload: VisualExportRequest;
|
|
49311
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
49970
49312
|
}
|
|
49971
49313
|
|
|
49972
49314
|
/**
|
|
@@ -49983,94 +49325,6 @@ export declare interface JsonApiAutomationInDocument {
|
|
|
49983
49325
|
data: JsonApiAutomationIn;
|
|
49984
49326
|
}
|
|
49985
49327
|
|
|
49986
|
-
/**
|
|
49987
|
-
*
|
|
49988
|
-
* @export
|
|
49989
|
-
* @interface JsonApiAutomationInRelationships
|
|
49990
|
-
*/
|
|
49991
|
-
export declare interface JsonApiAutomationInRelationships {
|
|
49992
|
-
/**
|
|
49993
|
-
*
|
|
49994
|
-
* @type {JsonApiAutomationInRelationshipsNotificationChannel}
|
|
49995
|
-
* @memberof JsonApiAutomationInRelationships
|
|
49996
|
-
*/
|
|
49997
|
-
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
49998
|
-
/**
|
|
49999
|
-
*
|
|
50000
|
-
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
50001
|
-
* @memberof JsonApiAutomationInRelationships
|
|
50002
|
-
*/
|
|
50003
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
50004
|
-
/**
|
|
50005
|
-
*
|
|
50006
|
-
* @type {JsonApiAutomationInRelationshipsExportDefinitions}
|
|
50007
|
-
* @memberof JsonApiAutomationInRelationships
|
|
50008
|
-
*/
|
|
50009
|
-
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
50010
|
-
/**
|
|
50011
|
-
*
|
|
50012
|
-
* @type {JsonApiAutomationInRelationshipsRecipients}
|
|
50013
|
-
* @memberof JsonApiAutomationInRelationships
|
|
50014
|
-
*/
|
|
50015
|
-
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
50016
|
-
}
|
|
50017
|
-
|
|
50018
|
-
/**
|
|
50019
|
-
*
|
|
50020
|
-
* @export
|
|
50021
|
-
* @interface JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
50022
|
-
*/
|
|
50023
|
-
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
50024
|
-
/**
|
|
50025
|
-
*
|
|
50026
|
-
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
50027
|
-
* @memberof JsonApiAutomationInRelationshipsAnalyticalDashboard
|
|
50028
|
-
*/
|
|
50029
|
-
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
50030
|
-
}
|
|
50031
|
-
|
|
50032
|
-
/**
|
|
50033
|
-
*
|
|
50034
|
-
* @export
|
|
50035
|
-
* @interface JsonApiAutomationInRelationshipsExportDefinitions
|
|
50036
|
-
*/
|
|
50037
|
-
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
50038
|
-
/**
|
|
50039
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50040
|
-
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
50041
|
-
* @memberof JsonApiAutomationInRelationshipsExportDefinitions
|
|
50042
|
-
*/
|
|
50043
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
50044
|
-
}
|
|
50045
|
-
|
|
50046
|
-
/**
|
|
50047
|
-
*
|
|
50048
|
-
* @export
|
|
50049
|
-
* @interface JsonApiAutomationInRelationshipsNotificationChannel
|
|
50050
|
-
*/
|
|
50051
|
-
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
50052
|
-
/**
|
|
50053
|
-
*
|
|
50054
|
-
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
50055
|
-
* @memberof JsonApiAutomationInRelationshipsNotificationChannel
|
|
50056
|
-
*/
|
|
50057
|
-
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
50058
|
-
}
|
|
50059
|
-
|
|
50060
|
-
/**
|
|
50061
|
-
*
|
|
50062
|
-
* @export
|
|
50063
|
-
* @interface JsonApiAutomationInRelationshipsRecipients
|
|
50064
|
-
*/
|
|
50065
|
-
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
50066
|
-
/**
|
|
50067
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50068
|
-
* @type {Array<JsonApiUserLinkage>}
|
|
50069
|
-
* @memberof JsonApiAutomationInRelationshipsRecipients
|
|
50070
|
-
*/
|
|
50071
|
-
data: Array<JsonApiUserLinkage>;
|
|
50072
|
-
}
|
|
50073
|
-
|
|
50074
49328
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
50075
49329
|
readonly AUTOMATION: "automation";
|
|
50076
49330
|
};
|
|
@@ -50179,10 +49433,10 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
50179
49433
|
details?: any;
|
|
50180
49434
|
/**
|
|
50181
49435
|
*
|
|
50182
|
-
* @type {
|
|
49436
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
50183
49437
|
* @memberof JsonApiAutomationOutAttributes
|
|
50184
49438
|
*/
|
|
50185
|
-
metadata?:
|
|
49439
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
50186
49440
|
/**
|
|
50187
49441
|
* Current state of the automation.
|
|
50188
49442
|
* @type {string}
|
|
@@ -50191,58 +49445,58 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
50191
49445
|
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
50192
49446
|
/**
|
|
50193
49447
|
*
|
|
50194
|
-
* @type {
|
|
49448
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
50195
49449
|
* @memberof JsonApiAutomationOutAttributes
|
|
50196
49450
|
*/
|
|
50197
|
-
schedule?:
|
|
49451
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
50198
49452
|
/**
|
|
50199
49453
|
*
|
|
50200
|
-
* @type {
|
|
49454
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
50201
49455
|
* @memberof JsonApiAutomationOutAttributes
|
|
50202
49456
|
*/
|
|
50203
|
-
alert?:
|
|
49457
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
50204
49458
|
/**
|
|
50205
49459
|
*
|
|
50206
|
-
* @type {Array<
|
|
49460
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
50207
49461
|
* @memberof JsonApiAutomationOutAttributes
|
|
50208
49462
|
*/
|
|
50209
|
-
tabularExports?: Array<
|
|
49463
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
50210
49464
|
/**
|
|
50211
49465
|
*
|
|
50212
|
-
* @type {Array<
|
|
49466
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
50213
49467
|
* @memberof JsonApiAutomationOutAttributes
|
|
50214
49468
|
*/
|
|
50215
|
-
visualExports?: Array<
|
|
49469
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
50216
49470
|
/**
|
|
50217
49471
|
*
|
|
50218
|
-
* @type {Array<
|
|
49472
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
50219
49473
|
* @memberof JsonApiAutomationOutAttributes
|
|
50220
49474
|
*/
|
|
50221
|
-
imageExports?: Array<
|
|
49475
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
50222
49476
|
/**
|
|
50223
49477
|
*
|
|
50224
|
-
* @type {Array<
|
|
49478
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
50225
49479
|
* @memberof JsonApiAutomationOutAttributes
|
|
50226
49480
|
*/
|
|
50227
|
-
rawExports?: Array<
|
|
49481
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
50228
49482
|
/**
|
|
50229
49483
|
*
|
|
50230
|
-
* @type {Array<
|
|
49484
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
50231
49485
|
* @memberof JsonApiAutomationOutAttributes
|
|
50232
49486
|
*/
|
|
50233
|
-
slidesExports?: Array<
|
|
49487
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
50234
49488
|
/**
|
|
50235
49489
|
*
|
|
50236
|
-
* @type {Array<
|
|
49490
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
50237
49491
|
* @memberof JsonApiAutomationOutAttributes
|
|
50238
49492
|
*/
|
|
50239
|
-
dashboardTabularExports?: Array<
|
|
49493
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
50240
49494
|
/**
|
|
50241
49495
|
* External recipients of the automation action results.
|
|
50242
|
-
* @type {Array<
|
|
49496
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
50243
49497
|
* @memberof JsonApiAutomationOutAttributes
|
|
50244
49498
|
*/
|
|
50245
|
-
externalRecipients?: Array<
|
|
49499
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
50246
49500
|
/**
|
|
50247
49501
|
*
|
|
50248
49502
|
* @type {string}
|
|
@@ -50316,10 +49570,10 @@ export declare interface JsonApiAutomationOutList {
|
|
|
50316
49570
|
links?: ListLinks;
|
|
50317
49571
|
/**
|
|
50318
49572
|
*
|
|
50319
|
-
* @type {
|
|
49573
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
50320
49574
|
* @memberof JsonApiAutomationOutList
|
|
50321
49575
|
*/
|
|
50322
|
-
meta?:
|
|
49576
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
50323
49577
|
/**
|
|
50324
49578
|
* Included resources
|
|
50325
49579
|
* @type {Array<JsonApiAutomationOutIncludes>}
|
|
@@ -50336,16 +49590,16 @@ export declare interface JsonApiAutomationOutList {
|
|
|
50336
49590
|
export declare interface JsonApiAutomationOutRelationships {
|
|
50337
49591
|
/**
|
|
50338
49592
|
*
|
|
50339
|
-
* @type {
|
|
49593
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
50340
49594
|
* @memberof JsonApiAutomationOutRelationships
|
|
50341
49595
|
*/
|
|
50342
|
-
notificationChannel?:
|
|
49596
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
50343
49597
|
/**
|
|
50344
49598
|
*
|
|
50345
|
-
* @type {
|
|
49599
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
50346
49600
|
* @memberof JsonApiAutomationOutRelationships
|
|
50347
49601
|
*/
|
|
50348
|
-
analyticalDashboard?:
|
|
49602
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
50349
49603
|
/**
|
|
50350
49604
|
*
|
|
50351
49605
|
* @type {JsonApiVisualizationObjectOutRelationshipsCreatedBy}
|
|
@@ -50360,16 +49614,16 @@ export declare interface JsonApiAutomationOutRelationships {
|
|
|
50360
49614
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
50361
49615
|
/**
|
|
50362
49616
|
*
|
|
50363
|
-
* @type {
|
|
49617
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
50364
49618
|
* @memberof JsonApiAutomationOutRelationships
|
|
50365
49619
|
*/
|
|
50366
|
-
exportDefinitions?:
|
|
49620
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
50367
49621
|
/**
|
|
50368
49622
|
*
|
|
50369
|
-
* @type {
|
|
49623
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
50370
49624
|
* @memberof JsonApiAutomationOutRelationships
|
|
50371
49625
|
*/
|
|
50372
|
-
recipients?:
|
|
49626
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
50373
49627
|
}
|
|
50374
49628
|
|
|
50375
49629
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
@@ -50448,16 +49702,310 @@ export declare interface JsonApiAutomationPatch {
|
|
|
50448
49702
|
id: string;
|
|
50449
49703
|
/**
|
|
50450
49704
|
*
|
|
50451
|
-
* @type {
|
|
49705
|
+
* @type {JsonApiAutomationPatchAttributes}
|
|
50452
49706
|
* @memberof JsonApiAutomationPatch
|
|
50453
49707
|
*/
|
|
50454
|
-
attributes?:
|
|
49708
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
50455
49709
|
/**
|
|
50456
49710
|
*
|
|
50457
|
-
* @type {
|
|
49711
|
+
* @type {JsonApiAutomationPatchRelationships}
|
|
50458
49712
|
* @memberof JsonApiAutomationPatch
|
|
50459
49713
|
*/
|
|
50460
|
-
relationships?:
|
|
49714
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
49715
|
+
}
|
|
49716
|
+
|
|
49717
|
+
/**
|
|
49718
|
+
*
|
|
49719
|
+
* @export
|
|
49720
|
+
* @interface JsonApiAutomationPatchAttributes
|
|
49721
|
+
*/
|
|
49722
|
+
export declare interface JsonApiAutomationPatchAttributes {
|
|
49723
|
+
/**
|
|
49724
|
+
*
|
|
49725
|
+
* @type {string}
|
|
49726
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49727
|
+
*/
|
|
49728
|
+
title?: string;
|
|
49729
|
+
/**
|
|
49730
|
+
*
|
|
49731
|
+
* @type {string}
|
|
49732
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49733
|
+
*/
|
|
49734
|
+
description?: string;
|
|
49735
|
+
/**
|
|
49736
|
+
*
|
|
49737
|
+
* @type {Array<string>}
|
|
49738
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49739
|
+
*/
|
|
49740
|
+
tags?: Array<string>;
|
|
49741
|
+
/**
|
|
49742
|
+
*
|
|
49743
|
+
* @type {boolean}
|
|
49744
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49745
|
+
*/
|
|
49746
|
+
areRelationsValid?: boolean;
|
|
49747
|
+
/**
|
|
49748
|
+
* Additional details to be included in the automated message.
|
|
49749
|
+
* @type {any}
|
|
49750
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49751
|
+
*/
|
|
49752
|
+
details?: any;
|
|
49753
|
+
/**
|
|
49754
|
+
*
|
|
49755
|
+
* @type {JsonApiAutomationPatchAttributesMetadata}
|
|
49756
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49757
|
+
*/
|
|
49758
|
+
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
49759
|
+
/**
|
|
49760
|
+
* Current state of the automation.
|
|
49761
|
+
* @type {string}
|
|
49762
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49763
|
+
*/
|
|
49764
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
49765
|
+
/**
|
|
49766
|
+
*
|
|
49767
|
+
* @type {JsonApiAutomationPatchAttributesSchedule}
|
|
49768
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49769
|
+
*/
|
|
49770
|
+
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
49771
|
+
/**
|
|
49772
|
+
*
|
|
49773
|
+
* @type {JsonApiAutomationPatchAttributesAlert}
|
|
49774
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49775
|
+
*/
|
|
49776
|
+
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
49777
|
+
/**
|
|
49778
|
+
*
|
|
49779
|
+
* @type {Array<JsonApiAutomationPatchAttributesTabularExports>}
|
|
49780
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49781
|
+
*/
|
|
49782
|
+
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExports>;
|
|
49783
|
+
/**
|
|
49784
|
+
*
|
|
49785
|
+
* @type {Array<JsonApiAutomationPatchAttributesVisualExports>}
|
|
49786
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49787
|
+
*/
|
|
49788
|
+
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExports>;
|
|
49789
|
+
/**
|
|
49790
|
+
*
|
|
49791
|
+
* @type {Array<JsonApiAutomationPatchAttributesImageExports>}
|
|
49792
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49793
|
+
*/
|
|
49794
|
+
imageExports?: Array<JsonApiAutomationPatchAttributesImageExports>;
|
|
49795
|
+
/**
|
|
49796
|
+
*
|
|
49797
|
+
* @type {Array<JsonApiAutomationPatchAttributesRawExports>}
|
|
49798
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49799
|
+
*/
|
|
49800
|
+
rawExports?: Array<JsonApiAutomationPatchAttributesRawExports>;
|
|
49801
|
+
/**
|
|
49802
|
+
*
|
|
49803
|
+
* @type {Array<JsonApiAutomationPatchAttributesSlidesExports>}
|
|
49804
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49805
|
+
*/
|
|
49806
|
+
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExports>;
|
|
49807
|
+
/**
|
|
49808
|
+
*
|
|
49809
|
+
* @type {Array<JsonApiAutomationPatchAttributesDashboardTabularExports>}
|
|
49810
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49811
|
+
*/
|
|
49812
|
+
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExports>;
|
|
49813
|
+
/**
|
|
49814
|
+
* External recipients of the automation action results.
|
|
49815
|
+
* @type {Array<JsonApiAutomationPatchAttributesExternalRecipients>}
|
|
49816
|
+
* @memberof JsonApiAutomationPatchAttributes
|
|
49817
|
+
*/
|
|
49818
|
+
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipients>;
|
|
49819
|
+
}
|
|
49820
|
+
|
|
49821
|
+
/**
|
|
49822
|
+
*
|
|
49823
|
+
* @export
|
|
49824
|
+
* @interface JsonApiAutomationPatchAttributesAlert
|
|
49825
|
+
*/
|
|
49826
|
+
export declare interface JsonApiAutomationPatchAttributesAlert {
|
|
49827
|
+
/**
|
|
49828
|
+
*
|
|
49829
|
+
* @type {AlertAfm}
|
|
49830
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
49831
|
+
*/
|
|
49832
|
+
execution: AlertAfm;
|
|
49833
|
+
/**
|
|
49834
|
+
*
|
|
49835
|
+
* @type {AlertCondition}
|
|
49836
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
49837
|
+
*/
|
|
49838
|
+
condition: AlertCondition;
|
|
49839
|
+
/**
|
|
49840
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
49841
|
+
* @type {string}
|
|
49842
|
+
* @memberof JsonApiAutomationPatchAttributesAlert
|
|
49843
|
+
*/
|
|
49844
|
+
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
49845
|
+
}
|
|
49846
|
+
|
|
49847
|
+
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
49848
|
+
readonly ALWAYS: "ALWAYS";
|
|
49849
|
+
readonly ONCE: "ONCE";
|
|
49850
|
+
};
|
|
49851
|
+
|
|
49852
|
+
export declare type JsonApiAutomationPatchAttributesAlertTriggerEnum = typeof JsonApiAutomationPatchAttributesAlertTriggerEnum[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
49853
|
+
|
|
49854
|
+
/**
|
|
49855
|
+
*
|
|
49856
|
+
* @export
|
|
49857
|
+
* @interface JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
49858
|
+
*/
|
|
49859
|
+
export declare interface JsonApiAutomationPatchAttributesDashboardTabularExports {
|
|
49860
|
+
/**
|
|
49861
|
+
*
|
|
49862
|
+
* @type {DashboardTabularExportRequestV2}
|
|
49863
|
+
* @memberof JsonApiAutomationPatchAttributesDashboardTabularExports
|
|
49864
|
+
*/
|
|
49865
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
49866
|
+
}
|
|
49867
|
+
|
|
49868
|
+
/**
|
|
49869
|
+
*
|
|
49870
|
+
* @export
|
|
49871
|
+
* @interface JsonApiAutomationPatchAttributesExternalRecipients
|
|
49872
|
+
*/
|
|
49873
|
+
export declare interface JsonApiAutomationPatchAttributesExternalRecipients {
|
|
49874
|
+
/**
|
|
49875
|
+
* E-mail address to send notifications from.
|
|
49876
|
+
* @type {string}
|
|
49877
|
+
* @memberof JsonApiAutomationPatchAttributesExternalRecipients
|
|
49878
|
+
*/
|
|
49879
|
+
email: string;
|
|
49880
|
+
}
|
|
49881
|
+
|
|
49882
|
+
/**
|
|
49883
|
+
*
|
|
49884
|
+
* @export
|
|
49885
|
+
* @interface JsonApiAutomationPatchAttributesImageExports
|
|
49886
|
+
*/
|
|
49887
|
+
export declare interface JsonApiAutomationPatchAttributesImageExports {
|
|
49888
|
+
/**
|
|
49889
|
+
*
|
|
49890
|
+
* @type {ImageExportRequest}
|
|
49891
|
+
* @memberof JsonApiAutomationPatchAttributesImageExports
|
|
49892
|
+
*/
|
|
49893
|
+
requestPayload: ImageExportRequest;
|
|
49894
|
+
}
|
|
49895
|
+
|
|
49896
|
+
/**
|
|
49897
|
+
* Additional information for the automation.
|
|
49898
|
+
* @export
|
|
49899
|
+
* @interface JsonApiAutomationPatchAttributesMetadata
|
|
49900
|
+
*/
|
|
49901
|
+
export declare interface JsonApiAutomationPatchAttributesMetadata {
|
|
49902
|
+
/**
|
|
49903
|
+
*
|
|
49904
|
+
* @type {string}
|
|
49905
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
49906
|
+
*/
|
|
49907
|
+
widget?: string;
|
|
49908
|
+
/**
|
|
49909
|
+
*
|
|
49910
|
+
* @type {Array<VisibleFilter>}
|
|
49911
|
+
* @memberof JsonApiAutomationPatchAttributesMetadata
|
|
49912
|
+
*/
|
|
49913
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
49914
|
+
}
|
|
49915
|
+
|
|
49916
|
+
/**
|
|
49917
|
+
*
|
|
49918
|
+
* @export
|
|
49919
|
+
* @interface JsonApiAutomationPatchAttributesRawExports
|
|
49920
|
+
*/
|
|
49921
|
+
export declare interface JsonApiAutomationPatchAttributesRawExports {
|
|
49922
|
+
/**
|
|
49923
|
+
*
|
|
49924
|
+
* @type {RawExportRequest}
|
|
49925
|
+
* @memberof JsonApiAutomationPatchAttributesRawExports
|
|
49926
|
+
*/
|
|
49927
|
+
requestPayload: RawExportRequest;
|
|
49928
|
+
}
|
|
49929
|
+
|
|
49930
|
+
/**
|
|
49931
|
+
*
|
|
49932
|
+
* @export
|
|
49933
|
+
* @interface JsonApiAutomationPatchAttributesSchedule
|
|
49934
|
+
*/
|
|
49935
|
+
export declare interface JsonApiAutomationPatchAttributesSchedule {
|
|
49936
|
+
/**
|
|
49937
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
49938
|
+
* @type {string}
|
|
49939
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
49940
|
+
*/
|
|
49941
|
+
cron: string;
|
|
49942
|
+
/**
|
|
49943
|
+
* Human-readable description of the cron expression.
|
|
49944
|
+
* @type {string}
|
|
49945
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
49946
|
+
*/
|
|
49947
|
+
cronDescription?: string;
|
|
49948
|
+
/**
|
|
49949
|
+
* Timezone in which the schedule is defined.
|
|
49950
|
+
* @type {string}
|
|
49951
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
49952
|
+
*/
|
|
49953
|
+
timezone: string;
|
|
49954
|
+
/**
|
|
49955
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
49956
|
+
* @type {string}
|
|
49957
|
+
* @memberof JsonApiAutomationPatchAttributesSchedule
|
|
49958
|
+
*/
|
|
49959
|
+
firstRun?: string;
|
|
49960
|
+
}
|
|
49961
|
+
|
|
49962
|
+
/**
|
|
49963
|
+
*
|
|
49964
|
+
* @export
|
|
49965
|
+
* @interface JsonApiAutomationPatchAttributesSlidesExports
|
|
49966
|
+
*/
|
|
49967
|
+
export declare interface JsonApiAutomationPatchAttributesSlidesExports {
|
|
49968
|
+
/**
|
|
49969
|
+
*
|
|
49970
|
+
* @type {SlidesExportRequest}
|
|
49971
|
+
* @memberof JsonApiAutomationPatchAttributesSlidesExports
|
|
49972
|
+
*/
|
|
49973
|
+
requestPayload: SlidesExportRequest;
|
|
49974
|
+
}
|
|
49975
|
+
|
|
49976
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
49977
|
+
readonly ACTIVE: "ACTIVE";
|
|
49978
|
+
readonly PAUSED: "PAUSED";
|
|
49979
|
+
};
|
|
49980
|
+
|
|
49981
|
+
export declare type JsonApiAutomationPatchAttributesStateEnum = typeof JsonApiAutomationPatchAttributesStateEnum[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
49982
|
+
|
|
49983
|
+
/**
|
|
49984
|
+
*
|
|
49985
|
+
* @export
|
|
49986
|
+
* @interface JsonApiAutomationPatchAttributesTabularExports
|
|
49987
|
+
*/
|
|
49988
|
+
export declare interface JsonApiAutomationPatchAttributesTabularExports {
|
|
49989
|
+
/**
|
|
49990
|
+
*
|
|
49991
|
+
* @type {TabularExportRequest}
|
|
49992
|
+
* @memberof JsonApiAutomationPatchAttributesTabularExports
|
|
49993
|
+
*/
|
|
49994
|
+
requestPayload: TabularExportRequest;
|
|
49995
|
+
}
|
|
49996
|
+
|
|
49997
|
+
/**
|
|
49998
|
+
*
|
|
49999
|
+
* @export
|
|
50000
|
+
* @interface JsonApiAutomationPatchAttributesVisualExports
|
|
50001
|
+
*/
|
|
50002
|
+
export declare interface JsonApiAutomationPatchAttributesVisualExports {
|
|
50003
|
+
/**
|
|
50004
|
+
*
|
|
50005
|
+
* @type {VisualExportRequest}
|
|
50006
|
+
* @memberof JsonApiAutomationPatchAttributesVisualExports
|
|
50007
|
+
*/
|
|
50008
|
+
requestPayload: VisualExportRequest;
|
|
50461
50009
|
}
|
|
50462
50010
|
|
|
50463
50011
|
/**
|
|
@@ -50474,6 +50022,94 @@ export declare interface JsonApiAutomationPatchDocument {
|
|
|
50474
50022
|
data: JsonApiAutomationPatch;
|
|
50475
50023
|
}
|
|
50476
50024
|
|
|
50025
|
+
/**
|
|
50026
|
+
*
|
|
50027
|
+
* @export
|
|
50028
|
+
* @interface JsonApiAutomationPatchRelationships
|
|
50029
|
+
*/
|
|
50030
|
+
export declare interface JsonApiAutomationPatchRelationships {
|
|
50031
|
+
/**
|
|
50032
|
+
*
|
|
50033
|
+
* @type {JsonApiAutomationPatchRelationshipsNotificationChannel}
|
|
50034
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
50035
|
+
*/
|
|
50036
|
+
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
50037
|
+
/**
|
|
50038
|
+
*
|
|
50039
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
50040
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
50041
|
+
*/
|
|
50042
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
50043
|
+
/**
|
|
50044
|
+
*
|
|
50045
|
+
* @type {JsonApiAutomationPatchRelationshipsExportDefinitions}
|
|
50046
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
50047
|
+
*/
|
|
50048
|
+
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
50049
|
+
/**
|
|
50050
|
+
*
|
|
50051
|
+
* @type {JsonApiAutomationPatchRelationshipsRecipients}
|
|
50052
|
+
* @memberof JsonApiAutomationPatchRelationships
|
|
50053
|
+
*/
|
|
50054
|
+
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
50055
|
+
}
|
|
50056
|
+
|
|
50057
|
+
/**
|
|
50058
|
+
*
|
|
50059
|
+
* @export
|
|
50060
|
+
* @interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
50061
|
+
*/
|
|
50062
|
+
export declare interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
50063
|
+
/**
|
|
50064
|
+
*
|
|
50065
|
+
* @type {JsonApiAnalyticalDashboardToOneLinkage}
|
|
50066
|
+
* @memberof JsonApiAutomationPatchRelationshipsAnalyticalDashboard
|
|
50067
|
+
*/
|
|
50068
|
+
data: JsonApiAnalyticalDashboardToOneLinkage | null;
|
|
50069
|
+
}
|
|
50070
|
+
|
|
50071
|
+
/**
|
|
50072
|
+
*
|
|
50073
|
+
* @export
|
|
50074
|
+
* @interface JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
50075
|
+
*/
|
|
50076
|
+
export declare interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
50077
|
+
/**
|
|
50078
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50079
|
+
* @type {Array<JsonApiExportDefinitionLinkage>}
|
|
50080
|
+
* @memberof JsonApiAutomationPatchRelationshipsExportDefinitions
|
|
50081
|
+
*/
|
|
50082
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
50083
|
+
}
|
|
50084
|
+
|
|
50085
|
+
/**
|
|
50086
|
+
*
|
|
50087
|
+
* @export
|
|
50088
|
+
* @interface JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
50089
|
+
*/
|
|
50090
|
+
export declare interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
50091
|
+
/**
|
|
50092
|
+
*
|
|
50093
|
+
* @type {JsonApiNotificationChannelToOneLinkage}
|
|
50094
|
+
* @memberof JsonApiAutomationPatchRelationshipsNotificationChannel
|
|
50095
|
+
*/
|
|
50096
|
+
data: JsonApiNotificationChannelToOneLinkage | null;
|
|
50097
|
+
}
|
|
50098
|
+
|
|
50099
|
+
/**
|
|
50100
|
+
*
|
|
50101
|
+
* @export
|
|
50102
|
+
* @interface JsonApiAutomationPatchRelationshipsRecipients
|
|
50103
|
+
*/
|
|
50104
|
+
export declare interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
50105
|
+
/**
|
|
50106
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50107
|
+
* @type {Array<JsonApiUserLinkage>}
|
|
50108
|
+
* @memberof JsonApiAutomationPatchRelationshipsRecipients
|
|
50109
|
+
*/
|
|
50110
|
+
data: Array<JsonApiUserLinkage>;
|
|
50111
|
+
}
|
|
50112
|
+
|
|
50477
50113
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
50478
50114
|
readonly AUTOMATION: "automation";
|
|
50479
50115
|
};
|
|
@@ -50619,24 +50255,10 @@ export declare interface JsonApiColorPaletteOutList {
|
|
|
50619
50255
|
links?: ListLinks;
|
|
50620
50256
|
/**
|
|
50621
50257
|
*
|
|
50622
|
-
* @type {
|
|
50258
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
50623
50259
|
* @memberof JsonApiColorPaletteOutList
|
|
50624
50260
|
*/
|
|
50625
|
-
meta?:
|
|
50626
|
-
}
|
|
50627
|
-
|
|
50628
|
-
/**
|
|
50629
|
-
*
|
|
50630
|
-
* @export
|
|
50631
|
-
* @interface JsonApiColorPaletteOutListMeta
|
|
50632
|
-
*/
|
|
50633
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
50634
|
-
/**
|
|
50635
|
-
*
|
|
50636
|
-
* @type {PageMetadata}
|
|
50637
|
-
* @memberof JsonApiColorPaletteOutListMeta
|
|
50638
|
-
*/
|
|
50639
|
-
page?: PageMetadata;
|
|
50261
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
50640
50262
|
}
|
|
50641
50263
|
|
|
50642
50264
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -50769,10 +50391,10 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
50769
50391
|
id: string;
|
|
50770
50392
|
/**
|
|
50771
50393
|
*
|
|
50772
|
-
* @type {
|
|
50394
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
50773
50395
|
* @memberof JsonApiCookieSecurityConfigurationIn
|
|
50774
50396
|
*/
|
|
50775
|
-
attributes?:
|
|
50397
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
50776
50398
|
}
|
|
50777
50399
|
|
|
50778
50400
|
/**
|
|
@@ -50815,10 +50437,30 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
50815
50437
|
id: string;
|
|
50816
50438
|
/**
|
|
50817
50439
|
*
|
|
50818
|
-
* @type {
|
|
50440
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
50819
50441
|
* @memberof JsonApiCookieSecurityConfigurationOut
|
|
50820
50442
|
*/
|
|
50821
|
-
attributes?:
|
|
50443
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
50444
|
+
}
|
|
50445
|
+
|
|
50446
|
+
/**
|
|
50447
|
+
*
|
|
50448
|
+
* @export
|
|
50449
|
+
* @interface JsonApiCookieSecurityConfigurationOutAttributes
|
|
50450
|
+
*/
|
|
50451
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
50452
|
+
/**
|
|
50453
|
+
*
|
|
50454
|
+
* @type {string}
|
|
50455
|
+
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
50456
|
+
*/
|
|
50457
|
+
lastRotation?: string;
|
|
50458
|
+
/**
|
|
50459
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
50460
|
+
* @type {string}
|
|
50461
|
+
* @memberof JsonApiCookieSecurityConfigurationOutAttributes
|
|
50462
|
+
*/
|
|
50463
|
+
rotationInterval?: string;
|
|
50822
50464
|
}
|
|
50823
50465
|
|
|
50824
50466
|
/**
|
|
@@ -50867,30 +50509,10 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
50867
50509
|
id: string;
|
|
50868
50510
|
/**
|
|
50869
50511
|
*
|
|
50870
|
-
* @type {
|
|
50512
|
+
* @type {JsonApiCookieSecurityConfigurationOutAttributes}
|
|
50871
50513
|
* @memberof JsonApiCookieSecurityConfigurationPatch
|
|
50872
50514
|
*/
|
|
50873
|
-
attributes?:
|
|
50874
|
-
}
|
|
50875
|
-
|
|
50876
|
-
/**
|
|
50877
|
-
*
|
|
50878
|
-
* @export
|
|
50879
|
-
* @interface JsonApiCookieSecurityConfigurationPatchAttributes
|
|
50880
|
-
*/
|
|
50881
|
-
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
50882
|
-
/**
|
|
50883
|
-
*
|
|
50884
|
-
* @type {string}
|
|
50885
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
50886
|
-
*/
|
|
50887
|
-
lastRotation?: string;
|
|
50888
|
-
/**
|
|
50889
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
50890
|
-
* @type {string}
|
|
50891
|
-
* @memberof JsonApiCookieSecurityConfigurationPatchAttributes
|
|
50892
|
-
*/
|
|
50893
|
-
rotationInterval?: string;
|
|
50515
|
+
attributes?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
50894
50516
|
}
|
|
50895
50517
|
|
|
50896
50518
|
/**
|
|
@@ -51039,10 +50661,10 @@ export declare interface JsonApiCspDirectiveOutList {
|
|
|
51039
50661
|
links?: ListLinks;
|
|
51040
50662
|
/**
|
|
51041
50663
|
*
|
|
51042
|
-
* @type {
|
|
50664
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
51043
50665
|
* @memberof JsonApiCspDirectiveOutList
|
|
51044
50666
|
*/
|
|
51045
|
-
meta?:
|
|
50667
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
51046
50668
|
}
|
|
51047
50669
|
|
|
51048
50670
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -51169,30 +50791,10 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
51169
50791
|
id: string;
|
|
51170
50792
|
/**
|
|
51171
50793
|
*
|
|
51172
|
-
* @type {
|
|
50794
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
51173
50795
|
* @memberof JsonApiCustomApplicationSettingIn
|
|
51174
50796
|
*/
|
|
51175
|
-
attributes:
|
|
51176
|
-
}
|
|
51177
|
-
|
|
51178
|
-
/**
|
|
51179
|
-
*
|
|
51180
|
-
* @export
|
|
51181
|
-
* @interface JsonApiCustomApplicationSettingInAttributes
|
|
51182
|
-
*/
|
|
51183
|
-
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
51184
|
-
/**
|
|
51185
|
-
*
|
|
51186
|
-
* @type {string}
|
|
51187
|
-
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
51188
|
-
*/
|
|
51189
|
-
applicationName: string;
|
|
51190
|
-
/**
|
|
51191
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
51192
|
-
* @type {object}
|
|
51193
|
-
* @memberof JsonApiCustomApplicationSettingInAttributes
|
|
51194
|
-
*/
|
|
51195
|
-
content: object;
|
|
50797
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
51196
50798
|
}
|
|
51197
50799
|
|
|
51198
50800
|
/**
|
|
@@ -51241,10 +50843,30 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
51241
50843
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51242
50844
|
/**
|
|
51243
50845
|
*
|
|
51244
|
-
* @type {
|
|
50846
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
51245
50847
|
* @memberof JsonApiCustomApplicationSettingOut
|
|
51246
50848
|
*/
|
|
51247
|
-
attributes:
|
|
50849
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
50850
|
+
}
|
|
50851
|
+
|
|
50852
|
+
/**
|
|
50853
|
+
*
|
|
50854
|
+
* @export
|
|
50855
|
+
* @interface JsonApiCustomApplicationSettingOutAttributes
|
|
50856
|
+
*/
|
|
50857
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
50858
|
+
/**
|
|
50859
|
+
*
|
|
50860
|
+
* @type {string}
|
|
50861
|
+
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
50862
|
+
*/
|
|
50863
|
+
applicationName: string;
|
|
50864
|
+
/**
|
|
50865
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50866
|
+
* @type {object}
|
|
50867
|
+
* @memberof JsonApiCustomApplicationSettingOutAttributes
|
|
50868
|
+
*/
|
|
50869
|
+
content: object;
|
|
51248
50870
|
}
|
|
51249
50871
|
|
|
51250
50872
|
/**
|
|
@@ -51287,10 +50909,10 @@ export declare interface JsonApiCustomApplicationSettingOutList {
|
|
|
51287
50909
|
links?: ListLinks;
|
|
51288
50910
|
/**
|
|
51289
50911
|
*
|
|
51290
|
-
* @type {
|
|
50912
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
51291
50913
|
* @memberof JsonApiCustomApplicationSettingOutList
|
|
51292
50914
|
*/
|
|
51293
|
-
meta?:
|
|
50915
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
51294
50916
|
}
|
|
51295
50917
|
|
|
51296
50918
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -51325,10 +50947,10 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
51325
50947
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51326
50948
|
/**
|
|
51327
50949
|
*
|
|
51328
|
-
* @type {
|
|
50950
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
51329
50951
|
* @memberof JsonApiCustomApplicationSettingOutWithLinks
|
|
51330
50952
|
*/
|
|
51331
|
-
attributes:
|
|
50953
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
51332
50954
|
/**
|
|
51333
50955
|
*
|
|
51334
50956
|
* @type {ObjectLinks}
|
|
@@ -51429,10 +51051,10 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
51429
51051
|
id?: string;
|
|
51430
51052
|
/**
|
|
51431
51053
|
*
|
|
51432
|
-
* @type {
|
|
51054
|
+
* @type {JsonApiCustomApplicationSettingOutAttributes}
|
|
51433
51055
|
* @memberof JsonApiCustomApplicationSettingPostOptionalId
|
|
51434
51056
|
*/
|
|
51435
|
-
attributes:
|
|
51057
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
51436
51058
|
}
|
|
51437
51059
|
|
|
51438
51060
|
/**
|
|
@@ -51475,48 +51097,10 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
51475
51097
|
id: string;
|
|
51476
51098
|
/**
|
|
51477
51099
|
*
|
|
51478
|
-
* @type {
|
|
51100
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
51479
51101
|
* @memberof JsonApiDashboardPluginIn
|
|
51480
51102
|
*/
|
|
51481
|
-
attributes?:
|
|
51482
|
-
}
|
|
51483
|
-
|
|
51484
|
-
/**
|
|
51485
|
-
*
|
|
51486
|
-
* @export
|
|
51487
|
-
* @interface JsonApiDashboardPluginInAttributes
|
|
51488
|
-
*/
|
|
51489
|
-
export declare interface JsonApiDashboardPluginInAttributes {
|
|
51490
|
-
/**
|
|
51491
|
-
*
|
|
51492
|
-
* @type {string}
|
|
51493
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
51494
|
-
*/
|
|
51495
|
-
title?: string;
|
|
51496
|
-
/**
|
|
51497
|
-
*
|
|
51498
|
-
* @type {string}
|
|
51499
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
51500
|
-
*/
|
|
51501
|
-
description?: string;
|
|
51502
|
-
/**
|
|
51503
|
-
*
|
|
51504
|
-
* @type {Array<string>}
|
|
51505
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
51506
|
-
*/
|
|
51507
|
-
tags?: Array<string>;
|
|
51508
|
-
/**
|
|
51509
|
-
*
|
|
51510
|
-
* @type {boolean}
|
|
51511
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
51512
|
-
*/
|
|
51513
|
-
areRelationsValid?: boolean;
|
|
51514
|
-
/**
|
|
51515
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51516
|
-
* @type {object}
|
|
51517
|
-
* @memberof JsonApiDashboardPluginInAttributes
|
|
51518
|
-
*/
|
|
51519
|
-
content?: object;
|
|
51103
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
51520
51104
|
}
|
|
51521
51105
|
|
|
51522
51106
|
/**
|
|
@@ -51699,10 +51283,10 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
51699
51283
|
links?: ListLinks;
|
|
51700
51284
|
/**
|
|
51701
51285
|
*
|
|
51702
|
-
* @type {
|
|
51286
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
51703
51287
|
* @memberof JsonApiDashboardPluginOutList
|
|
51704
51288
|
*/
|
|
51705
|
-
meta?:
|
|
51289
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
51706
51290
|
/**
|
|
51707
51291
|
* Included resources
|
|
51708
51292
|
* @type {Array<JsonApiUserIdentifierOutWithLinks>}
|
|
@@ -51807,10 +51391,48 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
51807
51391
|
id: string;
|
|
51808
51392
|
/**
|
|
51809
51393
|
*
|
|
51810
|
-
* @type {
|
|
51394
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
51811
51395
|
* @memberof JsonApiDashboardPluginPatch
|
|
51812
51396
|
*/
|
|
51813
|
-
attributes?:
|
|
51397
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
51398
|
+
}
|
|
51399
|
+
|
|
51400
|
+
/**
|
|
51401
|
+
*
|
|
51402
|
+
* @export
|
|
51403
|
+
* @interface JsonApiDashboardPluginPatchAttributes
|
|
51404
|
+
*/
|
|
51405
|
+
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
51406
|
+
/**
|
|
51407
|
+
*
|
|
51408
|
+
* @type {string}
|
|
51409
|
+
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
51410
|
+
*/
|
|
51411
|
+
title?: string;
|
|
51412
|
+
/**
|
|
51413
|
+
*
|
|
51414
|
+
* @type {string}
|
|
51415
|
+
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
51416
|
+
*/
|
|
51417
|
+
description?: string;
|
|
51418
|
+
/**
|
|
51419
|
+
*
|
|
51420
|
+
* @type {Array<string>}
|
|
51421
|
+
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
51422
|
+
*/
|
|
51423
|
+
tags?: Array<string>;
|
|
51424
|
+
/**
|
|
51425
|
+
*
|
|
51426
|
+
* @type {boolean}
|
|
51427
|
+
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
51428
|
+
*/
|
|
51429
|
+
areRelationsValid?: boolean;
|
|
51430
|
+
/**
|
|
51431
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
51432
|
+
* @type {object}
|
|
51433
|
+
* @memberof JsonApiDashboardPluginPatchAttributes
|
|
51434
|
+
*/
|
|
51435
|
+
content?: object;
|
|
51814
51436
|
}
|
|
51815
51437
|
|
|
51816
51438
|
/**
|
|
@@ -51853,10 +51475,10 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
51853
51475
|
id?: string;
|
|
51854
51476
|
/**
|
|
51855
51477
|
*
|
|
51856
|
-
* @type {
|
|
51478
|
+
* @type {JsonApiDashboardPluginPatchAttributes}
|
|
51857
51479
|
* @memberof JsonApiDashboardPluginPostOptionalId
|
|
51858
51480
|
*/
|
|
51859
|
-
attributes?:
|
|
51481
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
51860
51482
|
}
|
|
51861
51483
|
|
|
51862
51484
|
/**
|
|
@@ -52255,10 +51877,10 @@ export declare interface JsonApiDatasetOutList {
|
|
|
52255
51877
|
links?: ListLinks;
|
|
52256
51878
|
/**
|
|
52257
51879
|
*
|
|
52258
|
-
* @type {
|
|
51880
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
52259
51881
|
* @memberof JsonApiDatasetOutList
|
|
52260
51882
|
*/
|
|
52261
|
-
meta?:
|
|
51883
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
52262
51884
|
/**
|
|
52263
51885
|
* Included resources
|
|
52264
51886
|
* @type {Array<JsonApiDatasetOutIncludes>}
|
|
@@ -52504,10 +52126,10 @@ export declare interface JsonApiDataSourceIdentifierOutList {
|
|
|
52504
52126
|
links?: ListLinks;
|
|
52505
52127
|
/**
|
|
52506
52128
|
*
|
|
52507
|
-
* @type {
|
|
52129
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
52508
52130
|
* @memberof JsonApiDataSourceIdentifierOutList
|
|
52509
52131
|
*/
|
|
52510
|
-
meta?:
|
|
52132
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
52511
52133
|
}
|
|
52512
52134
|
|
|
52513
52135
|
/**
|
|
@@ -52957,10 +52579,10 @@ export declare interface JsonApiDataSourceOutList {
|
|
|
52957
52579
|
links?: ListLinks;
|
|
52958
52580
|
/**
|
|
52959
52581
|
*
|
|
52960
|
-
* @type {
|
|
52582
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
52961
52583
|
* @memberof JsonApiDataSourceOutList
|
|
52962
52584
|
*/
|
|
52963
|
-
meta?:
|
|
52585
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
52964
52586
|
}
|
|
52965
52587
|
|
|
52966
52588
|
export declare const JsonApiDataSourceOutTypeEnum: {
|
|
@@ -53268,10 +52890,10 @@ export declare interface JsonApiEntitlementOutList {
|
|
|
53268
52890
|
links?: ListLinks;
|
|
53269
52891
|
/**
|
|
53270
52892
|
*
|
|
53271
|
-
* @type {
|
|
52893
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
53272
52894
|
* @memberof JsonApiEntitlementOutList
|
|
53273
52895
|
*/
|
|
53274
|
-
meta?:
|
|
52896
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
53275
52897
|
}
|
|
53276
52898
|
|
|
53277
52899
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -53338,54 +52960,16 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
53338
52960
|
id: string;
|
|
53339
52961
|
/**
|
|
53340
52962
|
*
|
|
53341
|
-
* @type {
|
|
52963
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
53342
52964
|
* @memberof JsonApiExportDefinitionIn
|
|
53343
52965
|
*/
|
|
53344
|
-
attributes?:
|
|
52966
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
53345
52967
|
/**
|
|
53346
52968
|
*
|
|
53347
|
-
* @type {
|
|
52969
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
53348
52970
|
* @memberof JsonApiExportDefinitionIn
|
|
53349
52971
|
*/
|
|
53350
|
-
relationships?:
|
|
53351
|
-
}
|
|
53352
|
-
|
|
53353
|
-
/**
|
|
53354
|
-
*
|
|
53355
|
-
* @export
|
|
53356
|
-
* @interface JsonApiExportDefinitionInAttributes
|
|
53357
|
-
*/
|
|
53358
|
-
export declare interface JsonApiExportDefinitionInAttributes {
|
|
53359
|
-
/**
|
|
53360
|
-
*
|
|
53361
|
-
* @type {string}
|
|
53362
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
53363
|
-
*/
|
|
53364
|
-
title?: string;
|
|
53365
|
-
/**
|
|
53366
|
-
*
|
|
53367
|
-
* @type {string}
|
|
53368
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
53369
|
-
*/
|
|
53370
|
-
description?: string;
|
|
53371
|
-
/**
|
|
53372
|
-
*
|
|
53373
|
-
* @type {Array<string>}
|
|
53374
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
53375
|
-
*/
|
|
53376
|
-
tags?: Array<string>;
|
|
53377
|
-
/**
|
|
53378
|
-
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
53379
|
-
* @type {VisualExportRequest | TabularExportRequest}
|
|
53380
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
53381
|
-
*/
|
|
53382
|
-
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
53383
|
-
/**
|
|
53384
|
-
*
|
|
53385
|
-
* @type {boolean}
|
|
53386
|
-
* @memberof JsonApiExportDefinitionInAttributes
|
|
53387
|
-
*/
|
|
53388
|
-
areRelationsValid?: boolean;
|
|
52972
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
53389
52973
|
}
|
|
53390
52974
|
|
|
53391
52975
|
/**
|
|
@@ -53402,26 +52986,6 @@ export declare interface JsonApiExportDefinitionInDocument {
|
|
|
53402
52986
|
data: JsonApiExportDefinitionIn;
|
|
53403
52987
|
}
|
|
53404
52988
|
|
|
53405
|
-
/**
|
|
53406
|
-
*
|
|
53407
|
-
* @export
|
|
53408
|
-
* @interface JsonApiExportDefinitionInRelationships
|
|
53409
|
-
*/
|
|
53410
|
-
export declare interface JsonApiExportDefinitionInRelationships {
|
|
53411
|
-
/**
|
|
53412
|
-
*
|
|
53413
|
-
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
53414
|
-
* @memberof JsonApiExportDefinitionInRelationships
|
|
53415
|
-
*/
|
|
53416
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
53417
|
-
/**
|
|
53418
|
-
*
|
|
53419
|
-
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
53420
|
-
* @memberof JsonApiExportDefinitionInRelationships
|
|
53421
|
-
*/
|
|
53422
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
53423
|
-
}
|
|
53424
|
-
|
|
53425
52989
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
53426
52990
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
53427
52991
|
};
|
|
@@ -53594,10 +53158,10 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
53594
53158
|
links?: ListLinks;
|
|
53595
53159
|
/**
|
|
53596
53160
|
*
|
|
53597
|
-
* @type {
|
|
53161
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
53598
53162
|
* @memberof JsonApiExportDefinitionOutList
|
|
53599
53163
|
*/
|
|
53600
|
-
meta?:
|
|
53164
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
53601
53165
|
/**
|
|
53602
53166
|
* Included resources
|
|
53603
53167
|
* @type {Array<JsonApiExportDefinitionOutIncludes>}
|
|
@@ -53620,10 +53184,10 @@ export declare interface JsonApiExportDefinitionOutRelationships {
|
|
|
53620
53184
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
53621
53185
|
/**
|
|
53622
53186
|
*
|
|
53623
|
-
* @type {
|
|
53187
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
53624
53188
|
* @memberof JsonApiExportDefinitionOutRelationships
|
|
53625
53189
|
*/
|
|
53626
|
-
analyticalDashboard?:
|
|
53190
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
53627
53191
|
/**
|
|
53628
53192
|
*
|
|
53629
53193
|
* @type {JsonApiExportDefinitionOutRelationshipsAutomation}
|
|
@@ -53748,16 +53312,54 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
53748
53312
|
id: string;
|
|
53749
53313
|
/**
|
|
53750
53314
|
*
|
|
53751
|
-
* @type {
|
|
53315
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
53752
53316
|
* @memberof JsonApiExportDefinitionPatch
|
|
53753
53317
|
*/
|
|
53754
|
-
attributes?:
|
|
53318
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
53755
53319
|
/**
|
|
53756
53320
|
*
|
|
53757
|
-
* @type {
|
|
53321
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
53758
53322
|
* @memberof JsonApiExportDefinitionPatch
|
|
53759
53323
|
*/
|
|
53760
|
-
relationships?:
|
|
53324
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
53325
|
+
}
|
|
53326
|
+
|
|
53327
|
+
/**
|
|
53328
|
+
*
|
|
53329
|
+
* @export
|
|
53330
|
+
* @interface JsonApiExportDefinitionPatchAttributes
|
|
53331
|
+
*/
|
|
53332
|
+
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
53333
|
+
/**
|
|
53334
|
+
*
|
|
53335
|
+
* @type {string}
|
|
53336
|
+
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
53337
|
+
*/
|
|
53338
|
+
title?: string;
|
|
53339
|
+
/**
|
|
53340
|
+
*
|
|
53341
|
+
* @type {string}
|
|
53342
|
+
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
53343
|
+
*/
|
|
53344
|
+
description?: string;
|
|
53345
|
+
/**
|
|
53346
|
+
*
|
|
53347
|
+
* @type {Array<string>}
|
|
53348
|
+
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
53349
|
+
*/
|
|
53350
|
+
tags?: Array<string>;
|
|
53351
|
+
/**
|
|
53352
|
+
* JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
|
|
53353
|
+
* @type {VisualExportRequest | TabularExportRequest}
|
|
53354
|
+
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
53355
|
+
*/
|
|
53356
|
+
requestPayload?: VisualExportRequest | TabularExportRequest;
|
|
53357
|
+
/**
|
|
53358
|
+
*
|
|
53359
|
+
* @type {boolean}
|
|
53360
|
+
* @memberof JsonApiExportDefinitionPatchAttributes
|
|
53361
|
+
*/
|
|
53362
|
+
areRelationsValid?: boolean;
|
|
53761
53363
|
}
|
|
53762
53364
|
|
|
53763
53365
|
/**
|
|
@@ -53774,6 +53376,26 @@ export declare interface JsonApiExportDefinitionPatchDocument {
|
|
|
53774
53376
|
data: JsonApiExportDefinitionPatch;
|
|
53775
53377
|
}
|
|
53776
53378
|
|
|
53379
|
+
/**
|
|
53380
|
+
*
|
|
53381
|
+
* @export
|
|
53382
|
+
* @interface JsonApiExportDefinitionPatchRelationships
|
|
53383
|
+
*/
|
|
53384
|
+
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
53385
|
+
/**
|
|
53386
|
+
*
|
|
53387
|
+
* @type {JsonApiExportDefinitionOutRelationshipsVisualizationObject}
|
|
53388
|
+
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
53389
|
+
*/
|
|
53390
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
53391
|
+
/**
|
|
53392
|
+
*
|
|
53393
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
53394
|
+
* @memberof JsonApiExportDefinitionPatchRelationships
|
|
53395
|
+
*/
|
|
53396
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
53397
|
+
}
|
|
53398
|
+
|
|
53777
53399
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
53778
53400
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
53779
53401
|
};
|
|
@@ -53800,16 +53422,16 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
53800
53422
|
id?: string;
|
|
53801
53423
|
/**
|
|
53802
53424
|
*
|
|
53803
|
-
* @type {
|
|
53425
|
+
* @type {JsonApiExportDefinitionPatchAttributes}
|
|
53804
53426
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
53805
53427
|
*/
|
|
53806
|
-
attributes?:
|
|
53428
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
53807
53429
|
/**
|
|
53808
53430
|
*
|
|
53809
|
-
* @type {
|
|
53431
|
+
* @type {JsonApiExportDefinitionPatchRelationships}
|
|
53810
53432
|
* @memberof JsonApiExportDefinitionPostOptionalId
|
|
53811
53433
|
*/
|
|
53812
|
-
relationships?:
|
|
53434
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
53813
53435
|
}
|
|
53814
53436
|
|
|
53815
53437
|
/**
|
|
@@ -54042,10 +53664,10 @@ export declare interface JsonApiExportTemplateOutList {
|
|
|
54042
53664
|
links?: ListLinks;
|
|
54043
53665
|
/**
|
|
54044
53666
|
*
|
|
54045
|
-
* @type {
|
|
53667
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
54046
53668
|
* @memberof JsonApiExportTemplateOutList
|
|
54047
53669
|
*/
|
|
54048
|
-
meta?:
|
|
53670
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
54049
53671
|
}
|
|
54050
53672
|
|
|
54051
53673
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -54396,10 +54018,10 @@ export declare interface JsonApiFactOutList {
|
|
|
54396
54018
|
links?: ListLinks;
|
|
54397
54019
|
/**
|
|
54398
54020
|
*
|
|
54399
|
-
* @type {
|
|
54021
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
54400
54022
|
* @memberof JsonApiFactOutList
|
|
54401
54023
|
*/
|
|
54402
|
-
meta?:
|
|
54024
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
54403
54025
|
/**
|
|
54404
54026
|
* Included resources
|
|
54405
54027
|
* @type {Array<JsonApiFactOutIncludes>}
|
|
@@ -54525,10 +54147,10 @@ export declare interface JsonApiFilterContextIn {
|
|
|
54525
54147
|
id: string;
|
|
54526
54148
|
/**
|
|
54527
54149
|
*
|
|
54528
|
-
* @type {
|
|
54150
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
54529
54151
|
* @memberof JsonApiFilterContextIn
|
|
54530
54152
|
*/
|
|
54531
|
-
attributes:
|
|
54153
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
54532
54154
|
}
|
|
54533
54155
|
|
|
54534
54156
|
/**
|
|
@@ -54603,10 +54225,10 @@ export declare interface JsonApiFilterContextOut {
|
|
|
54603
54225
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
54604
54226
|
/**
|
|
54605
54227
|
*
|
|
54606
|
-
* @type {
|
|
54228
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
54607
54229
|
* @memberof JsonApiFilterContextOut
|
|
54608
54230
|
*/
|
|
54609
|
-
attributes:
|
|
54231
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
54610
54232
|
/**
|
|
54611
54233
|
*
|
|
54612
54234
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -54615,6 +54237,44 @@ export declare interface JsonApiFilterContextOut {
|
|
|
54615
54237
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
54616
54238
|
}
|
|
54617
54239
|
|
|
54240
|
+
/**
|
|
54241
|
+
*
|
|
54242
|
+
* @export
|
|
54243
|
+
* @interface JsonApiFilterContextOutAttributes
|
|
54244
|
+
*/
|
|
54245
|
+
export declare interface JsonApiFilterContextOutAttributes {
|
|
54246
|
+
/**
|
|
54247
|
+
*
|
|
54248
|
+
* @type {string}
|
|
54249
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
54250
|
+
*/
|
|
54251
|
+
title?: string;
|
|
54252
|
+
/**
|
|
54253
|
+
*
|
|
54254
|
+
* @type {string}
|
|
54255
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
54256
|
+
*/
|
|
54257
|
+
description?: string;
|
|
54258
|
+
/**
|
|
54259
|
+
*
|
|
54260
|
+
* @type {Array<string>}
|
|
54261
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
54262
|
+
*/
|
|
54263
|
+
tags?: Array<string>;
|
|
54264
|
+
/**
|
|
54265
|
+
*
|
|
54266
|
+
* @type {boolean}
|
|
54267
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
54268
|
+
*/
|
|
54269
|
+
areRelationsValid?: boolean;
|
|
54270
|
+
/**
|
|
54271
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
54272
|
+
* @type {object}
|
|
54273
|
+
* @memberof JsonApiFilterContextOutAttributes
|
|
54274
|
+
*/
|
|
54275
|
+
content: object;
|
|
54276
|
+
}
|
|
54277
|
+
|
|
54618
54278
|
/**
|
|
54619
54279
|
*
|
|
54620
54280
|
* @export
|
|
@@ -54667,10 +54327,10 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
54667
54327
|
links?: ListLinks;
|
|
54668
54328
|
/**
|
|
54669
54329
|
*
|
|
54670
|
-
* @type {
|
|
54330
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
54671
54331
|
* @memberof JsonApiFilterContextOutList
|
|
54672
54332
|
*/
|
|
54673
|
-
meta?:
|
|
54333
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
54674
54334
|
/**
|
|
54675
54335
|
* Included resources
|
|
54676
54336
|
* @type {Array<JsonApiFilterContextOutIncludes>}
|
|
@@ -54737,10 +54397,10 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
54737
54397
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
54738
54398
|
/**
|
|
54739
54399
|
*
|
|
54740
|
-
* @type {
|
|
54400
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
54741
54401
|
* @memberof JsonApiFilterContextOutWithLinks
|
|
54742
54402
|
*/
|
|
54743
|
-
attributes:
|
|
54403
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
54744
54404
|
/**
|
|
54745
54405
|
*
|
|
54746
54406
|
* @type {JsonApiFilterContextOutRelationships}
|
|
@@ -54827,10 +54487,10 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
54827
54487
|
id?: string;
|
|
54828
54488
|
/**
|
|
54829
54489
|
*
|
|
54830
|
-
* @type {
|
|
54490
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
54831
54491
|
* @memberof JsonApiFilterContextPostOptionalId
|
|
54832
54492
|
*/
|
|
54833
|
-
attributes:
|
|
54493
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
54834
54494
|
}
|
|
54835
54495
|
|
|
54836
54496
|
/**
|
|
@@ -54873,60 +54533,16 @@ export declare interface JsonApiFilterViewIn {
|
|
|
54873
54533
|
id: string;
|
|
54874
54534
|
/**
|
|
54875
54535
|
*
|
|
54876
|
-
* @type {
|
|
54536
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
54877
54537
|
* @memberof JsonApiFilterViewIn
|
|
54878
54538
|
*/
|
|
54879
|
-
attributes:
|
|
54539
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
54880
54540
|
/**
|
|
54881
54541
|
*
|
|
54882
|
-
* @type {
|
|
54542
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
54883
54543
|
* @memberof JsonApiFilterViewIn
|
|
54884
54544
|
*/
|
|
54885
|
-
relationships?:
|
|
54886
|
-
}
|
|
54887
|
-
|
|
54888
|
-
/**
|
|
54889
|
-
*
|
|
54890
|
-
* @export
|
|
54891
|
-
* @interface JsonApiFilterViewInAttributes
|
|
54892
|
-
*/
|
|
54893
|
-
export declare interface JsonApiFilterViewInAttributes {
|
|
54894
|
-
/**
|
|
54895
|
-
*
|
|
54896
|
-
* @type {string}
|
|
54897
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54898
|
-
*/
|
|
54899
|
-
title: string;
|
|
54900
|
-
/**
|
|
54901
|
-
*
|
|
54902
|
-
* @type {string}
|
|
54903
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54904
|
-
*/
|
|
54905
|
-
description?: string;
|
|
54906
|
-
/**
|
|
54907
|
-
*
|
|
54908
|
-
* @type {Array<string>}
|
|
54909
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54910
|
-
*/
|
|
54911
|
-
tags?: Array<string>;
|
|
54912
|
-
/**
|
|
54913
|
-
*
|
|
54914
|
-
* @type {boolean}
|
|
54915
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54916
|
-
*/
|
|
54917
|
-
areRelationsValid?: boolean;
|
|
54918
|
-
/**
|
|
54919
|
-
* Indicator whether the filter view should by applied by default.
|
|
54920
|
-
* @type {boolean}
|
|
54921
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54922
|
-
*/
|
|
54923
|
-
isDefault?: boolean;
|
|
54924
|
-
/**
|
|
54925
|
-
* The respective filter context.
|
|
54926
|
-
* @type {object}
|
|
54927
|
-
* @memberof JsonApiFilterViewInAttributes
|
|
54928
|
-
*/
|
|
54929
|
-
content: object;
|
|
54545
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
54930
54546
|
}
|
|
54931
54547
|
|
|
54932
54548
|
/**
|
|
@@ -54943,40 +54559,6 @@ export declare interface JsonApiFilterViewInDocument {
|
|
|
54943
54559
|
data: JsonApiFilterViewIn;
|
|
54944
54560
|
}
|
|
54945
54561
|
|
|
54946
|
-
/**
|
|
54947
|
-
*
|
|
54948
|
-
* @export
|
|
54949
|
-
* @interface JsonApiFilterViewInRelationships
|
|
54950
|
-
*/
|
|
54951
|
-
export declare interface JsonApiFilterViewInRelationships {
|
|
54952
|
-
/**
|
|
54953
|
-
*
|
|
54954
|
-
* @type {JsonApiAutomationInRelationshipsAnalyticalDashboard}
|
|
54955
|
-
* @memberof JsonApiFilterViewInRelationships
|
|
54956
|
-
*/
|
|
54957
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
54958
|
-
/**
|
|
54959
|
-
*
|
|
54960
|
-
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
54961
|
-
* @memberof JsonApiFilterViewInRelationships
|
|
54962
|
-
*/
|
|
54963
|
-
user?: JsonApiFilterViewInRelationshipsUser;
|
|
54964
|
-
}
|
|
54965
|
-
|
|
54966
|
-
/**
|
|
54967
|
-
*
|
|
54968
|
-
* @export
|
|
54969
|
-
* @interface JsonApiFilterViewInRelationshipsUser
|
|
54970
|
-
*/
|
|
54971
|
-
export declare interface JsonApiFilterViewInRelationshipsUser {
|
|
54972
|
-
/**
|
|
54973
|
-
*
|
|
54974
|
-
* @type {JsonApiUserToOneLinkage}
|
|
54975
|
-
* @memberof JsonApiFilterViewInRelationshipsUser
|
|
54976
|
-
*/
|
|
54977
|
-
data: JsonApiUserToOneLinkage | null;
|
|
54978
|
-
}
|
|
54979
|
-
|
|
54980
54562
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
54981
54563
|
readonly FILTER_VIEW: "filterView";
|
|
54982
54564
|
};
|
|
@@ -55003,16 +54585,60 @@ export declare interface JsonApiFilterViewOut {
|
|
|
55003
54585
|
id: string;
|
|
55004
54586
|
/**
|
|
55005
54587
|
*
|
|
55006
|
-
* @type {
|
|
54588
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
55007
54589
|
* @memberof JsonApiFilterViewOut
|
|
55008
54590
|
*/
|
|
55009
|
-
attributes:
|
|
54591
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
55010
54592
|
/**
|
|
55011
54593
|
*
|
|
55012
|
-
* @type {
|
|
54594
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
55013
54595
|
* @memberof JsonApiFilterViewOut
|
|
55014
54596
|
*/
|
|
55015
|
-
relationships?:
|
|
54597
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
54598
|
+
}
|
|
54599
|
+
|
|
54600
|
+
/**
|
|
54601
|
+
*
|
|
54602
|
+
* @export
|
|
54603
|
+
* @interface JsonApiFilterViewOutAttributes
|
|
54604
|
+
*/
|
|
54605
|
+
export declare interface JsonApiFilterViewOutAttributes {
|
|
54606
|
+
/**
|
|
54607
|
+
*
|
|
54608
|
+
* @type {string}
|
|
54609
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54610
|
+
*/
|
|
54611
|
+
title: string;
|
|
54612
|
+
/**
|
|
54613
|
+
*
|
|
54614
|
+
* @type {string}
|
|
54615
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54616
|
+
*/
|
|
54617
|
+
description?: string;
|
|
54618
|
+
/**
|
|
54619
|
+
*
|
|
54620
|
+
* @type {Array<string>}
|
|
54621
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54622
|
+
*/
|
|
54623
|
+
tags?: Array<string>;
|
|
54624
|
+
/**
|
|
54625
|
+
*
|
|
54626
|
+
* @type {boolean}
|
|
54627
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54628
|
+
*/
|
|
54629
|
+
areRelationsValid?: boolean;
|
|
54630
|
+
/**
|
|
54631
|
+
* Indicator whether the filter view should by applied by default.
|
|
54632
|
+
* @type {boolean}
|
|
54633
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54634
|
+
*/
|
|
54635
|
+
isDefault?: boolean;
|
|
54636
|
+
/**
|
|
54637
|
+
* The respective filter context.
|
|
54638
|
+
* @type {object}
|
|
54639
|
+
* @memberof JsonApiFilterViewOutAttributes
|
|
54640
|
+
*/
|
|
54641
|
+
content: object;
|
|
55016
54642
|
}
|
|
55017
54643
|
|
|
55018
54644
|
/**
|
|
@@ -55067,10 +54693,10 @@ export declare interface JsonApiFilterViewOutList {
|
|
|
55067
54693
|
links?: ListLinks;
|
|
55068
54694
|
/**
|
|
55069
54695
|
*
|
|
55070
|
-
* @type {
|
|
54696
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
55071
54697
|
* @memberof JsonApiFilterViewOutList
|
|
55072
54698
|
*/
|
|
55073
|
-
meta?:
|
|
54699
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
55074
54700
|
/**
|
|
55075
54701
|
* Included resources
|
|
55076
54702
|
* @type {Array<JsonApiFilterViewOutIncludes>}
|
|
@@ -55105,16 +54731,16 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
55105
54731
|
id: string;
|
|
55106
54732
|
/**
|
|
55107
54733
|
*
|
|
55108
|
-
* @type {
|
|
54734
|
+
* @type {JsonApiFilterViewOutAttributes}
|
|
55109
54735
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
55110
54736
|
*/
|
|
55111
|
-
attributes:
|
|
54737
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
55112
54738
|
/**
|
|
55113
54739
|
*
|
|
55114
|
-
* @type {
|
|
54740
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
55115
54741
|
* @memberof JsonApiFilterViewOutWithLinks
|
|
55116
54742
|
*/
|
|
55117
|
-
relationships?:
|
|
54743
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
55118
54744
|
/**
|
|
55119
54745
|
*
|
|
55120
54746
|
* @type {ObjectLinks}
|
|
@@ -55155,10 +54781,10 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
55155
54781
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
55156
54782
|
/**
|
|
55157
54783
|
*
|
|
55158
|
-
* @type {
|
|
54784
|
+
* @type {JsonApiFilterViewPatchRelationships}
|
|
55159
54785
|
* @memberof JsonApiFilterViewPatch
|
|
55160
54786
|
*/
|
|
55161
|
-
relationships?:
|
|
54787
|
+
relationships?: JsonApiFilterViewPatchRelationships;
|
|
55162
54788
|
}
|
|
55163
54789
|
|
|
55164
54790
|
/**
|
|
@@ -55219,6 +54845,26 @@ export declare interface JsonApiFilterViewPatchDocument {
|
|
|
55219
54845
|
data: JsonApiFilterViewPatch;
|
|
55220
54846
|
}
|
|
55221
54847
|
|
|
54848
|
+
/**
|
|
54849
|
+
*
|
|
54850
|
+
* @export
|
|
54851
|
+
* @interface JsonApiFilterViewPatchRelationships
|
|
54852
|
+
*/
|
|
54853
|
+
export declare interface JsonApiFilterViewPatchRelationships {
|
|
54854
|
+
/**
|
|
54855
|
+
*
|
|
54856
|
+
* @type {JsonApiAutomationPatchRelationshipsAnalyticalDashboard}
|
|
54857
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
54858
|
+
*/
|
|
54859
|
+
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
54860
|
+
/**
|
|
54861
|
+
*
|
|
54862
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
54863
|
+
* @memberof JsonApiFilterViewPatchRelationships
|
|
54864
|
+
*/
|
|
54865
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
54866
|
+
}
|
|
54867
|
+
|
|
55222
54868
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
55223
54869
|
readonly FILTER_VIEW: "filterView";
|
|
55224
54870
|
};
|
|
@@ -55250,98 +54896,12 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
55250
54896
|
id: string;
|
|
55251
54897
|
/**
|
|
55252
54898
|
*
|
|
55253
|
-
* @type {
|
|
54899
|
+
* @type {JsonApiIdentityProviderPatchAttributes}
|
|
55254
54900
|
* @memberof JsonApiIdentityProviderIn
|
|
55255
54901
|
*/
|
|
55256
|
-
attributes?:
|
|
54902
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
55257
54903
|
}
|
|
55258
54904
|
|
|
55259
|
-
/**
|
|
55260
|
-
*
|
|
55261
|
-
* @export
|
|
55262
|
-
* @interface JsonApiIdentityProviderInAttributes
|
|
55263
|
-
*/
|
|
55264
|
-
export declare interface JsonApiIdentityProviderInAttributes {
|
|
55265
|
-
/**
|
|
55266
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
55267
|
-
* @type {Array<string>}
|
|
55268
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55269
|
-
*/
|
|
55270
|
-
identifiers?: Array<string>;
|
|
55271
|
-
/**
|
|
55272
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
55273
|
-
* @type {{ [key: string]: string; }}
|
|
55274
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55275
|
-
*/
|
|
55276
|
-
customClaimMapping?: {
|
|
55277
|
-
[key: string]: string;
|
|
55278
|
-
};
|
|
55279
|
-
/**
|
|
55280
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
55281
|
-
* @type {string}
|
|
55282
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55283
|
-
*/
|
|
55284
|
-
samlMetadata?: string;
|
|
55285
|
-
/**
|
|
55286
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55287
|
-
* @type {string}
|
|
55288
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55289
|
-
*/
|
|
55290
|
-
oauthClientId?: string;
|
|
55291
|
-
/**
|
|
55292
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55293
|
-
* @type {string}
|
|
55294
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55295
|
-
*/
|
|
55296
|
-
oauthClientSecret?: string;
|
|
55297
|
-
/**
|
|
55298
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55299
|
-
* @type {string}
|
|
55300
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55301
|
-
*/
|
|
55302
|
-
oauthIssuerLocation?: string;
|
|
55303
|
-
/**
|
|
55304
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
55305
|
-
* @type {string}
|
|
55306
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55307
|
-
*/
|
|
55308
|
-
oauthIssuerId?: string;
|
|
55309
|
-
/**
|
|
55310
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
55311
|
-
* @type {string}
|
|
55312
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55313
|
-
*/
|
|
55314
|
-
oauthSubjectIdClaim?: string;
|
|
55315
|
-
/**
|
|
55316
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
55317
|
-
* @type {{ [key: string]: string; }}
|
|
55318
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55319
|
-
*/
|
|
55320
|
-
oauthCustomAuthAttributes?: {
|
|
55321
|
-
[key: string]: string;
|
|
55322
|
-
};
|
|
55323
|
-
/**
|
|
55324
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
55325
|
-
* @type {Array<string>}
|
|
55326
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55327
|
-
*/
|
|
55328
|
-
oauthCustomScopes?: Array<string> | null;
|
|
55329
|
-
/**
|
|
55330
|
-
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
55331
|
-
* @type {string}
|
|
55332
|
-
* @memberof JsonApiIdentityProviderInAttributes
|
|
55333
|
-
*/
|
|
55334
|
-
idpType?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
55335
|
-
}
|
|
55336
|
-
|
|
55337
|
-
export declare const JsonApiIdentityProviderInAttributesIdpTypeEnum: {
|
|
55338
|
-
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
55339
|
-
readonly FIM_IDP: "FIM_IDP";
|
|
55340
|
-
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
55341
|
-
};
|
|
55342
|
-
|
|
55343
|
-
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = typeof JsonApiIdentityProviderInAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderInAttributesIdpTypeEnum];
|
|
55344
|
-
|
|
55345
54905
|
/**
|
|
55346
54906
|
*
|
|
55347
54907
|
* @export
|
|
@@ -55528,10 +55088,10 @@ export declare interface JsonApiIdentityProviderOutList {
|
|
|
55528
55088
|
links?: ListLinks;
|
|
55529
55089
|
/**
|
|
55530
55090
|
*
|
|
55531
|
-
* @type {
|
|
55091
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
55532
55092
|
* @memberof JsonApiIdentityProviderOutList
|
|
55533
55093
|
*/
|
|
55534
|
-
meta?:
|
|
55094
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
55535
55095
|
}
|
|
55536
55096
|
|
|
55537
55097
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -55598,12 +55158,98 @@ export declare interface JsonApiIdentityProviderPatch {
|
|
|
55598
55158
|
id: string;
|
|
55599
55159
|
/**
|
|
55600
55160
|
*
|
|
55601
|
-
* @type {
|
|
55161
|
+
* @type {JsonApiIdentityProviderPatchAttributes}
|
|
55602
55162
|
* @memberof JsonApiIdentityProviderPatch
|
|
55603
55163
|
*/
|
|
55604
|
-
attributes?:
|
|
55164
|
+
attributes?: JsonApiIdentityProviderPatchAttributes;
|
|
55165
|
+
}
|
|
55166
|
+
|
|
55167
|
+
/**
|
|
55168
|
+
*
|
|
55169
|
+
* @export
|
|
55170
|
+
* @interface JsonApiIdentityProviderPatchAttributes
|
|
55171
|
+
*/
|
|
55172
|
+
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
55173
|
+
/**
|
|
55174
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
55175
|
+
* @type {Array<string>}
|
|
55176
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55177
|
+
*/
|
|
55178
|
+
identifiers?: Array<string>;
|
|
55179
|
+
/**
|
|
55180
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
55181
|
+
* @type {{ [key: string]: string; }}
|
|
55182
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55183
|
+
*/
|
|
55184
|
+
customClaimMapping?: {
|
|
55185
|
+
[key: string]: string;
|
|
55186
|
+
};
|
|
55187
|
+
/**
|
|
55188
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
55189
|
+
* @type {string}
|
|
55190
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55191
|
+
*/
|
|
55192
|
+
samlMetadata?: string;
|
|
55193
|
+
/**
|
|
55194
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55195
|
+
* @type {string}
|
|
55196
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55197
|
+
*/
|
|
55198
|
+
oauthClientId?: string;
|
|
55199
|
+
/**
|
|
55200
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55201
|
+
* @type {string}
|
|
55202
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55203
|
+
*/
|
|
55204
|
+
oauthClientSecret?: string;
|
|
55205
|
+
/**
|
|
55206
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
55207
|
+
* @type {string}
|
|
55208
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55209
|
+
*/
|
|
55210
|
+
oauthIssuerLocation?: string;
|
|
55211
|
+
/**
|
|
55212
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
55213
|
+
* @type {string}
|
|
55214
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55215
|
+
*/
|
|
55216
|
+
oauthIssuerId?: string;
|
|
55217
|
+
/**
|
|
55218
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
55219
|
+
* @type {string}
|
|
55220
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55221
|
+
*/
|
|
55222
|
+
oauthSubjectIdClaim?: string;
|
|
55223
|
+
/**
|
|
55224
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
55225
|
+
* @type {{ [key: string]: string; }}
|
|
55226
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55227
|
+
*/
|
|
55228
|
+
oauthCustomAuthAttributes?: {
|
|
55229
|
+
[key: string]: string;
|
|
55230
|
+
};
|
|
55231
|
+
/**
|
|
55232
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
55233
|
+
* @type {Array<string>}
|
|
55234
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55235
|
+
*/
|
|
55236
|
+
oauthCustomScopes?: Array<string> | null;
|
|
55237
|
+
/**
|
|
55238
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
55239
|
+
* @type {string}
|
|
55240
|
+
* @memberof JsonApiIdentityProviderPatchAttributes
|
|
55241
|
+
*/
|
|
55242
|
+
idpType?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
55605
55243
|
}
|
|
55606
55244
|
|
|
55245
|
+
export declare const JsonApiIdentityProviderPatchAttributesIdpTypeEnum: {
|
|
55246
|
+
readonly MANAGED_IDP: "MANAGED_IDP";
|
|
55247
|
+
readonly FIM_IDP: "FIM_IDP";
|
|
55248
|
+
readonly CUSTOM_IDP: "CUSTOM_IDP";
|
|
55249
|
+
};
|
|
55250
|
+
|
|
55251
|
+
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum[keyof typeof JsonApiIdentityProviderPatchAttributesIdpTypeEnum];
|
|
55252
|
+
|
|
55607
55253
|
/**
|
|
55608
55254
|
*
|
|
55609
55255
|
* @export
|
|
@@ -55757,10 +55403,10 @@ export declare interface JsonApiJwkOutList {
|
|
|
55757
55403
|
links?: ListLinks;
|
|
55758
55404
|
/**
|
|
55759
55405
|
*
|
|
55760
|
-
* @type {
|
|
55406
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
55761
55407
|
* @memberof JsonApiJwkOutList
|
|
55762
55408
|
*/
|
|
55763
|
-
meta?:
|
|
55409
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
55764
55410
|
}
|
|
55765
55411
|
|
|
55766
55412
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -56042,10 +55688,10 @@ export declare interface JsonApiLabelOutList {
|
|
|
56042
55688
|
links?: ListLinks;
|
|
56043
55689
|
/**
|
|
56044
55690
|
*
|
|
56045
|
-
* @type {
|
|
55691
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
56046
55692
|
* @memberof JsonApiLabelOutList
|
|
56047
55693
|
*/
|
|
56048
|
-
meta?:
|
|
55694
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
56049
55695
|
/**
|
|
56050
55696
|
* Included resources
|
|
56051
55697
|
* @type {Array<JsonApiAttributeOutWithLinks>}
|
|
@@ -56353,10 +55999,10 @@ export declare interface JsonApiLlmEndpointOutList {
|
|
|
56353
55999
|
links?: ListLinks;
|
|
56354
56000
|
/**
|
|
56355
56001
|
*
|
|
56356
|
-
* @type {
|
|
56002
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
56357
56003
|
* @memberof JsonApiLlmEndpointOutList
|
|
56358
56004
|
*/
|
|
56359
|
-
meta?:
|
|
56005
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
56360
56006
|
}
|
|
56361
56007
|
|
|
56362
56008
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -56520,48 +56166,10 @@ export declare interface JsonApiMetricIn {
|
|
|
56520
56166
|
id: string;
|
|
56521
56167
|
/**
|
|
56522
56168
|
*
|
|
56523
|
-
* @type {
|
|
56169
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
56524
56170
|
* @memberof JsonApiMetricIn
|
|
56525
56171
|
*/
|
|
56526
|
-
attributes:
|
|
56527
|
-
}
|
|
56528
|
-
|
|
56529
|
-
/**
|
|
56530
|
-
*
|
|
56531
|
-
* @export
|
|
56532
|
-
* @interface JsonApiMetricInAttributes
|
|
56533
|
-
*/
|
|
56534
|
-
export declare interface JsonApiMetricInAttributes {
|
|
56535
|
-
/**
|
|
56536
|
-
*
|
|
56537
|
-
* @type {string}
|
|
56538
|
-
* @memberof JsonApiMetricInAttributes
|
|
56539
|
-
*/
|
|
56540
|
-
title?: string;
|
|
56541
|
-
/**
|
|
56542
|
-
*
|
|
56543
|
-
* @type {string}
|
|
56544
|
-
* @memberof JsonApiMetricInAttributes
|
|
56545
|
-
*/
|
|
56546
|
-
description?: string;
|
|
56547
|
-
/**
|
|
56548
|
-
*
|
|
56549
|
-
* @type {Array<string>}
|
|
56550
|
-
* @memberof JsonApiMetricInAttributes
|
|
56551
|
-
*/
|
|
56552
|
-
tags?: Array<string>;
|
|
56553
|
-
/**
|
|
56554
|
-
*
|
|
56555
|
-
* @type {boolean}
|
|
56556
|
-
* @memberof JsonApiMetricInAttributes
|
|
56557
|
-
*/
|
|
56558
|
-
areRelationsValid?: boolean;
|
|
56559
|
-
/**
|
|
56560
|
-
*
|
|
56561
|
-
* @type {JsonApiMetricOutAttributesContent}
|
|
56562
|
-
* @memberof JsonApiMetricInAttributes
|
|
56563
|
-
*/
|
|
56564
|
-
content: JsonApiMetricOutAttributesContent;
|
|
56172
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
56565
56173
|
}
|
|
56566
56174
|
|
|
56567
56175
|
/**
|
|
@@ -56770,10 +56378,10 @@ export declare interface JsonApiMetricOutList {
|
|
|
56770
56378
|
links?: ListLinks;
|
|
56771
56379
|
/**
|
|
56772
56380
|
*
|
|
56773
|
-
* @type {
|
|
56381
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
56774
56382
|
* @memberof JsonApiMetricOutList
|
|
56775
56383
|
*/
|
|
56776
|
-
meta?:
|
|
56384
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
56777
56385
|
/**
|
|
56778
56386
|
* Included resources
|
|
56779
56387
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -56942,10 +56550,48 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
56942
56550
|
id?: string;
|
|
56943
56551
|
/**
|
|
56944
56552
|
*
|
|
56945
|
-
* @type {
|
|
56553
|
+
* @type {JsonApiMetricPostOptionalIdAttributes}
|
|
56946
56554
|
* @memberof JsonApiMetricPostOptionalId
|
|
56947
56555
|
*/
|
|
56948
|
-
attributes:
|
|
56556
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
56557
|
+
}
|
|
56558
|
+
|
|
56559
|
+
/**
|
|
56560
|
+
*
|
|
56561
|
+
* @export
|
|
56562
|
+
* @interface JsonApiMetricPostOptionalIdAttributes
|
|
56563
|
+
*/
|
|
56564
|
+
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
56565
|
+
/**
|
|
56566
|
+
*
|
|
56567
|
+
* @type {string}
|
|
56568
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
56569
|
+
*/
|
|
56570
|
+
title?: string;
|
|
56571
|
+
/**
|
|
56572
|
+
*
|
|
56573
|
+
* @type {string}
|
|
56574
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
56575
|
+
*/
|
|
56576
|
+
description?: string;
|
|
56577
|
+
/**
|
|
56578
|
+
*
|
|
56579
|
+
* @type {Array<string>}
|
|
56580
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
56581
|
+
*/
|
|
56582
|
+
tags?: Array<string>;
|
|
56583
|
+
/**
|
|
56584
|
+
*
|
|
56585
|
+
* @type {boolean}
|
|
56586
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
56587
|
+
*/
|
|
56588
|
+
areRelationsValid?: boolean;
|
|
56589
|
+
/**
|
|
56590
|
+
*
|
|
56591
|
+
* @type {JsonApiMetricOutAttributesContent}
|
|
56592
|
+
* @memberof JsonApiMetricPostOptionalIdAttributes
|
|
56593
|
+
*/
|
|
56594
|
+
content: JsonApiMetricOutAttributesContent;
|
|
56949
56595
|
}
|
|
56950
56596
|
|
|
56951
56597
|
/**
|
|
@@ -57083,10 +56729,10 @@ export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
|
57083
56729
|
links?: ListLinks;
|
|
57084
56730
|
/**
|
|
57085
56731
|
*
|
|
57086
|
-
* @type {
|
|
56732
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
57087
56733
|
* @memberof JsonApiNotificationChannelIdentifierOutList
|
|
57088
56734
|
*/
|
|
57089
|
-
meta?:
|
|
56735
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
57090
56736
|
}
|
|
57091
56737
|
|
|
57092
56738
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -57153,10 +56799,10 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
57153
56799
|
id: string;
|
|
57154
56800
|
/**
|
|
57155
56801
|
*
|
|
57156
|
-
* @type {
|
|
56802
|
+
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
57157
56803
|
* @memberof JsonApiNotificationChannelIn
|
|
57158
56804
|
*/
|
|
57159
|
-
attributes?:
|
|
56805
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
57160
56806
|
}
|
|
57161
56807
|
|
|
57162
56808
|
/**
|
|
@@ -57365,10 +57011,10 @@ export declare interface JsonApiNotificationChannelOutList {
|
|
|
57365
57011
|
links?: ListLinks;
|
|
57366
57012
|
/**
|
|
57367
57013
|
*
|
|
57368
|
-
* @type {
|
|
57014
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
57369
57015
|
* @memberof JsonApiNotificationChannelOutList
|
|
57370
57016
|
*/
|
|
57371
|
-
meta?:
|
|
57017
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
57372
57018
|
}
|
|
57373
57019
|
|
|
57374
57020
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -57435,12 +57081,91 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
57435
57081
|
id: string;
|
|
57436
57082
|
/**
|
|
57437
57083
|
*
|
|
57438
|
-
* @type {
|
|
57084
|
+
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
57439
57085
|
* @memberof JsonApiNotificationChannelPatch
|
|
57440
57086
|
*/
|
|
57441
|
-
attributes?:
|
|
57087
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
57442
57088
|
}
|
|
57443
57089
|
|
|
57090
|
+
/**
|
|
57091
|
+
*
|
|
57092
|
+
* @export
|
|
57093
|
+
* @interface JsonApiNotificationChannelPatchAttributes
|
|
57094
|
+
*/
|
|
57095
|
+
export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
57096
|
+
/**
|
|
57097
|
+
*
|
|
57098
|
+
* @type {string}
|
|
57099
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57100
|
+
*/
|
|
57101
|
+
name?: string | null;
|
|
57102
|
+
/**
|
|
57103
|
+
*
|
|
57104
|
+
* @type {string}
|
|
57105
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57106
|
+
*/
|
|
57107
|
+
description?: string | null;
|
|
57108
|
+
/**
|
|
57109
|
+
* The destination where the notifications are to be sent.
|
|
57110
|
+
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
57111
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57112
|
+
*/
|
|
57113
|
+
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
57114
|
+
/**
|
|
57115
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
57116
|
+
* @type {string}
|
|
57117
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57118
|
+
*/
|
|
57119
|
+
customDashboardUrl?: string;
|
|
57120
|
+
/**
|
|
57121
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
57122
|
+
* @type {string}
|
|
57123
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57124
|
+
*/
|
|
57125
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum;
|
|
57126
|
+
/**
|
|
57127
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
57128
|
+
* @type {string}
|
|
57129
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57130
|
+
*/
|
|
57131
|
+
notificationSource?: string;
|
|
57132
|
+
/**
|
|
57133
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
57134
|
+
* @type {string}
|
|
57135
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57136
|
+
*/
|
|
57137
|
+
allowedRecipients?: JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum;
|
|
57138
|
+
/**
|
|
57139
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
57140
|
+
* @type {string}
|
|
57141
|
+
* @memberof JsonApiNotificationChannelPatchAttributes
|
|
57142
|
+
*/
|
|
57143
|
+
inPlatformNotification?: JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum;
|
|
57144
|
+
}
|
|
57145
|
+
|
|
57146
|
+
export declare const JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum: {
|
|
57147
|
+
readonly CREATOR: "CREATOR";
|
|
57148
|
+
readonly INTERNAL: "INTERNAL";
|
|
57149
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
57150
|
+
};
|
|
57151
|
+
|
|
57152
|
+
export declare type JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPatchAttributesAllowedRecipientsEnum];
|
|
57153
|
+
|
|
57154
|
+
export declare const JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum: {
|
|
57155
|
+
readonly HIDDEN: "HIDDEN";
|
|
57156
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
57157
|
+
readonly ALL: "ALL";
|
|
57158
|
+
};
|
|
57159
|
+
|
|
57160
|
+
export declare type JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPatchAttributesDashboardLinkVisibilityEnum];
|
|
57161
|
+
|
|
57162
|
+
export declare const JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum: {
|
|
57163
|
+
readonly DISABLED: "DISABLED";
|
|
57164
|
+
readonly ENABLED: "ENABLED";
|
|
57165
|
+
};
|
|
57166
|
+
|
|
57167
|
+
export declare type JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPatchAttributesInPlatformNotificationEnum];
|
|
57168
|
+
|
|
57444
57169
|
/**
|
|
57445
57170
|
*
|
|
57446
57171
|
* @export
|
|
@@ -57481,91 +57206,12 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
57481
57206
|
id?: string;
|
|
57482
57207
|
/**
|
|
57483
57208
|
*
|
|
57484
|
-
* @type {
|
|
57209
|
+
* @type {JsonApiNotificationChannelPatchAttributes}
|
|
57485
57210
|
* @memberof JsonApiNotificationChannelPostOptionalId
|
|
57486
57211
|
*/
|
|
57487
|
-
attributes?:
|
|
57212
|
+
attributes?: JsonApiNotificationChannelPatchAttributes;
|
|
57488
57213
|
}
|
|
57489
57214
|
|
|
57490
|
-
/**
|
|
57491
|
-
*
|
|
57492
|
-
* @export
|
|
57493
|
-
* @interface JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57494
|
-
*/
|
|
57495
|
-
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
57496
|
-
/**
|
|
57497
|
-
*
|
|
57498
|
-
* @type {string}
|
|
57499
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57500
|
-
*/
|
|
57501
|
-
name?: string | null;
|
|
57502
|
-
/**
|
|
57503
|
-
*
|
|
57504
|
-
* @type {string}
|
|
57505
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57506
|
-
*/
|
|
57507
|
-
description?: string | null;
|
|
57508
|
-
/**
|
|
57509
|
-
* The destination where the notifications are to be sent.
|
|
57510
|
-
* @type {DefaultSmtp | InPlatform | Smtp | Webhook}
|
|
57511
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57512
|
-
*/
|
|
57513
|
-
destination?: DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
57514
|
-
/**
|
|
57515
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
57516
|
-
* @type {string}
|
|
57517
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57518
|
-
*/
|
|
57519
|
-
customDashboardUrl?: string;
|
|
57520
|
-
/**
|
|
57521
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
57522
|
-
* @type {string}
|
|
57523
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57524
|
-
*/
|
|
57525
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
57526
|
-
/**
|
|
57527
|
-
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
57528
|
-
* @type {string}
|
|
57529
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57530
|
-
*/
|
|
57531
|
-
notificationSource?: string;
|
|
57532
|
-
/**
|
|
57533
|
-
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
57534
|
-
* @type {string}
|
|
57535
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57536
|
-
*/
|
|
57537
|
-
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
57538
|
-
/**
|
|
57539
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
57540
|
-
* @type {string}
|
|
57541
|
-
* @memberof JsonApiNotificationChannelPostOptionalIdAttributes
|
|
57542
|
-
*/
|
|
57543
|
-
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
57544
|
-
}
|
|
57545
|
-
|
|
57546
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
57547
|
-
readonly CREATOR: "CREATOR";
|
|
57548
|
-
readonly INTERNAL: "INTERNAL";
|
|
57549
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
57550
|
-
};
|
|
57551
|
-
|
|
57552
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
57553
|
-
|
|
57554
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
57555
|
-
readonly HIDDEN: "HIDDEN";
|
|
57556
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
57557
|
-
readonly ALL: "ALL";
|
|
57558
|
-
};
|
|
57559
|
-
|
|
57560
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
57561
|
-
|
|
57562
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
57563
|
-
readonly DISABLED: "DISABLED";
|
|
57564
|
-
readonly ENABLED: "ENABLED";
|
|
57565
|
-
};
|
|
57566
|
-
|
|
57567
|
-
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
57568
|
-
|
|
57569
57215
|
/**
|
|
57570
57216
|
*
|
|
57571
57217
|
* @export
|
|
@@ -57854,22 +57500,64 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = typeof JsonApiOr
|
|
|
57854
57500
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
57855
57501
|
/**
|
|
57856
57502
|
*
|
|
57857
|
-
* @type {
|
|
57503
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
57858
57504
|
* @memberof JsonApiOrganizationOutRelationships
|
|
57859
57505
|
*/
|
|
57860
|
-
bootstrapUser?:
|
|
57506
|
+
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
57861
57507
|
/**
|
|
57862
57508
|
*
|
|
57863
|
-
* @type {
|
|
57509
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
57864
57510
|
* @memberof JsonApiOrganizationOutRelationships
|
|
57865
57511
|
*/
|
|
57866
|
-
bootstrapUserGroup?:
|
|
57512
|
+
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
57867
57513
|
/**
|
|
57868
57514
|
*
|
|
57869
|
-
* @type {
|
|
57515
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
57870
57516
|
* @memberof JsonApiOrganizationOutRelationships
|
|
57871
57517
|
*/
|
|
57872
|
-
identityProvider?:
|
|
57518
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
57519
|
+
}
|
|
57520
|
+
|
|
57521
|
+
/**
|
|
57522
|
+
*
|
|
57523
|
+
* @export
|
|
57524
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
57525
|
+
*/
|
|
57526
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
57527
|
+
/**
|
|
57528
|
+
*
|
|
57529
|
+
* @type {JsonApiUserToOneLinkage}
|
|
57530
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUser
|
|
57531
|
+
*/
|
|
57532
|
+
data: JsonApiUserToOneLinkage | null;
|
|
57533
|
+
}
|
|
57534
|
+
|
|
57535
|
+
/**
|
|
57536
|
+
*
|
|
57537
|
+
* @export
|
|
57538
|
+
* @interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
57539
|
+
*/
|
|
57540
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
57541
|
+
/**
|
|
57542
|
+
*
|
|
57543
|
+
* @type {JsonApiUserGroupToOneLinkage}
|
|
57544
|
+
* @memberof JsonApiOrganizationOutRelationshipsBootstrapUserGroup
|
|
57545
|
+
*/
|
|
57546
|
+
data: JsonApiUserGroupToOneLinkage | null;
|
|
57547
|
+
}
|
|
57548
|
+
|
|
57549
|
+
/**
|
|
57550
|
+
*
|
|
57551
|
+
* @export
|
|
57552
|
+
* @interface JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
57553
|
+
*/
|
|
57554
|
+
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
57555
|
+
/**
|
|
57556
|
+
*
|
|
57557
|
+
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
57558
|
+
* @memberof JsonApiOrganizationOutRelationshipsIdentityProvider
|
|
57559
|
+
*/
|
|
57560
|
+
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
57873
57561
|
}
|
|
57874
57562
|
|
|
57875
57563
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -58015,24 +57703,10 @@ export declare interface JsonApiOrganizationPatchDocument {
|
|
|
58015
57703
|
export declare interface JsonApiOrganizationPatchRelationships {
|
|
58016
57704
|
/**
|
|
58017
57705
|
*
|
|
58018
|
-
* @type {
|
|
57706
|
+
* @type {JsonApiOrganizationOutRelationshipsIdentityProvider}
|
|
58019
57707
|
* @memberof JsonApiOrganizationPatchRelationships
|
|
58020
57708
|
*/
|
|
58021
|
-
identityProvider?:
|
|
58022
|
-
}
|
|
58023
|
-
|
|
58024
|
-
/**
|
|
58025
|
-
*
|
|
58026
|
-
* @export
|
|
58027
|
-
* @interface JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
58028
|
-
*/
|
|
58029
|
-
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
58030
|
-
/**
|
|
58031
|
-
*
|
|
58032
|
-
* @type {JsonApiIdentityProviderToOneLinkage}
|
|
58033
|
-
* @memberof JsonApiOrganizationPatchRelationshipsIdentityProvider
|
|
58034
|
-
*/
|
|
58035
|
-
data: JsonApiIdentityProviderToOneLinkage | null;
|
|
57709
|
+
identityProvider?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
58036
57710
|
}
|
|
58037
57711
|
|
|
58038
57712
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
@@ -58061,10 +57735,10 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
58061
57735
|
id: string;
|
|
58062
57736
|
/**
|
|
58063
57737
|
*
|
|
58064
|
-
* @type {
|
|
57738
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58065
57739
|
* @memberof JsonApiOrganizationSettingIn
|
|
58066
57740
|
*/
|
|
58067
|
-
attributes?:
|
|
57741
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58068
57742
|
}
|
|
58069
57743
|
|
|
58070
57744
|
/**
|
|
@@ -58107,62 +57781,12 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
58107
57781
|
id: string;
|
|
58108
57782
|
/**
|
|
58109
57783
|
*
|
|
58110
|
-
* @type {
|
|
57784
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58111
57785
|
* @memberof JsonApiOrganizationSettingOut
|
|
58112
57786
|
*/
|
|
58113
|
-
attributes?:
|
|
57787
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58114
57788
|
}
|
|
58115
57789
|
|
|
58116
|
-
/**
|
|
58117
|
-
*
|
|
58118
|
-
* @export
|
|
58119
|
-
* @interface JsonApiOrganizationSettingOutAttributes
|
|
58120
|
-
*/
|
|
58121
|
-
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
58122
|
-
/**
|
|
58123
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
58124
|
-
* @type {object}
|
|
58125
|
-
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
58126
|
-
*/
|
|
58127
|
-
content?: object;
|
|
58128
|
-
/**
|
|
58129
|
-
*
|
|
58130
|
-
* @type {string}
|
|
58131
|
-
* @memberof JsonApiOrganizationSettingOutAttributes
|
|
58132
|
-
*/
|
|
58133
|
-
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
58134
|
-
}
|
|
58135
|
-
|
|
58136
|
-
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
58137
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
58138
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
58139
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
58140
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
58141
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
58142
|
-
readonly LOCALE: "LOCALE";
|
|
58143
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
58144
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
58145
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
58146
|
-
readonly WEEK_START: "WEEK_START";
|
|
58147
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
58148
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
58149
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
58150
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
58151
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
58152
|
-
readonly ALERT: "ALERT";
|
|
58153
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
58154
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
58155
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
58156
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
58157
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
58158
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
58159
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
58160
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
58161
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
58162
|
-
};
|
|
58163
|
-
|
|
58164
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = typeof JsonApiOrganizationSettingOutAttributesTypeEnum[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
58165
|
-
|
|
58166
57790
|
/**
|
|
58167
57791
|
*
|
|
58168
57792
|
* @export
|
|
@@ -58203,10 +57827,10 @@ export declare interface JsonApiOrganizationSettingOutList {
|
|
|
58203
57827
|
links?: ListLinks;
|
|
58204
57828
|
/**
|
|
58205
57829
|
*
|
|
58206
|
-
* @type {
|
|
57830
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
58207
57831
|
* @memberof JsonApiOrganizationSettingOutList
|
|
58208
57832
|
*/
|
|
58209
|
-
meta?:
|
|
57833
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
58210
57834
|
}
|
|
58211
57835
|
|
|
58212
57836
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -58235,10 +57859,10 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
58235
57859
|
id: string;
|
|
58236
57860
|
/**
|
|
58237
57861
|
*
|
|
58238
|
-
* @type {
|
|
57862
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58239
57863
|
* @memberof JsonApiOrganizationSettingOutWithLinks
|
|
58240
57864
|
*/
|
|
58241
|
-
attributes?:
|
|
57865
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58242
57866
|
/**
|
|
58243
57867
|
*
|
|
58244
57868
|
* @type {ObjectLinks}
|
|
@@ -58273,10 +57897,10 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
58273
57897
|
id: string;
|
|
58274
57898
|
/**
|
|
58275
57899
|
*
|
|
58276
|
-
* @type {
|
|
57900
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
58277
57901
|
* @memberof JsonApiOrganizationSettingPatch
|
|
58278
57902
|
*/
|
|
58279
|
-
attributes?:
|
|
57903
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
58280
57904
|
}
|
|
58281
57905
|
|
|
58282
57906
|
/**
|
|
@@ -58411,10 +58035,10 @@ export declare interface JsonApiThemeOutList {
|
|
|
58411
58035
|
links?: ListLinks;
|
|
58412
58036
|
/**
|
|
58413
58037
|
*
|
|
58414
|
-
* @type {
|
|
58038
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
58415
58039
|
* @memberof JsonApiThemeOutList
|
|
58416
58040
|
*/
|
|
58417
|
-
meta?:
|
|
58041
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
58418
58042
|
}
|
|
58419
58043
|
|
|
58420
58044
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -58527,54 +58151,16 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
58527
58151
|
id: string;
|
|
58528
58152
|
/**
|
|
58529
58153
|
*
|
|
58530
|
-
* @type {
|
|
58154
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
58531
58155
|
* @memberof JsonApiUserDataFilterIn
|
|
58532
58156
|
*/
|
|
58533
|
-
attributes:
|
|
58157
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
58534
58158
|
/**
|
|
58535
58159
|
*
|
|
58536
|
-
* @type {
|
|
58160
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
58537
58161
|
* @memberof JsonApiUserDataFilterIn
|
|
58538
58162
|
*/
|
|
58539
|
-
relationships?:
|
|
58540
|
-
}
|
|
58541
|
-
|
|
58542
|
-
/**
|
|
58543
|
-
*
|
|
58544
|
-
* @export
|
|
58545
|
-
* @interface JsonApiUserDataFilterInAttributes
|
|
58546
|
-
*/
|
|
58547
|
-
export declare interface JsonApiUserDataFilterInAttributes {
|
|
58548
|
-
/**
|
|
58549
|
-
*
|
|
58550
|
-
* @type {string}
|
|
58551
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
58552
|
-
*/
|
|
58553
|
-
title?: string;
|
|
58554
|
-
/**
|
|
58555
|
-
*
|
|
58556
|
-
* @type {string}
|
|
58557
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
58558
|
-
*/
|
|
58559
|
-
description?: string;
|
|
58560
|
-
/**
|
|
58561
|
-
*
|
|
58562
|
-
* @type {Array<string>}
|
|
58563
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
58564
|
-
*/
|
|
58565
|
-
tags?: Array<string>;
|
|
58566
|
-
/**
|
|
58567
|
-
*
|
|
58568
|
-
* @type {boolean}
|
|
58569
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
58570
|
-
*/
|
|
58571
|
-
areRelationsValid?: boolean;
|
|
58572
|
-
/**
|
|
58573
|
-
*
|
|
58574
|
-
* @type {string}
|
|
58575
|
-
* @memberof JsonApiUserDataFilterInAttributes
|
|
58576
|
-
*/
|
|
58577
|
-
maql: string;
|
|
58163
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
58578
58164
|
}
|
|
58579
58165
|
|
|
58580
58166
|
/**
|
|
@@ -58591,40 +58177,6 @@ export declare interface JsonApiUserDataFilterInDocument {
|
|
|
58591
58177
|
data: JsonApiUserDataFilterIn;
|
|
58592
58178
|
}
|
|
58593
58179
|
|
|
58594
|
-
/**
|
|
58595
|
-
*
|
|
58596
|
-
* @export
|
|
58597
|
-
* @interface JsonApiUserDataFilterInRelationships
|
|
58598
|
-
*/
|
|
58599
|
-
export declare interface JsonApiUserDataFilterInRelationships {
|
|
58600
|
-
/**
|
|
58601
|
-
*
|
|
58602
|
-
* @type {JsonApiFilterViewInRelationshipsUser}
|
|
58603
|
-
* @memberof JsonApiUserDataFilterInRelationships
|
|
58604
|
-
*/
|
|
58605
|
-
user?: JsonApiFilterViewInRelationshipsUser;
|
|
58606
|
-
/**
|
|
58607
|
-
*
|
|
58608
|
-
* @type {JsonApiUserDataFilterInRelationshipsUserGroup}
|
|
58609
|
-
* @memberof JsonApiUserDataFilterInRelationships
|
|
58610
|
-
*/
|
|
58611
|
-
userGroup?: JsonApiUserDataFilterInRelationshipsUserGroup;
|
|
58612
|
-
}
|
|
58613
|
-
|
|
58614
|
-
/**
|
|
58615
|
-
*
|
|
58616
|
-
* @export
|
|
58617
|
-
* @interface JsonApiUserDataFilterInRelationshipsUserGroup
|
|
58618
|
-
*/
|
|
58619
|
-
export declare interface JsonApiUserDataFilterInRelationshipsUserGroup {
|
|
58620
|
-
/**
|
|
58621
|
-
*
|
|
58622
|
-
* @type {JsonApiUserGroupToOneLinkage}
|
|
58623
|
-
* @memberof JsonApiUserDataFilterInRelationshipsUserGroup
|
|
58624
|
-
*/
|
|
58625
|
-
data: JsonApiUserGroupToOneLinkage | null;
|
|
58626
|
-
}
|
|
58627
|
-
|
|
58628
58180
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
58629
58181
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
58630
58182
|
};
|
|
@@ -58657,10 +58209,10 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
58657
58209
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
58658
58210
|
/**
|
|
58659
58211
|
*
|
|
58660
|
-
* @type {
|
|
58212
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
58661
58213
|
* @memberof JsonApiUserDataFilterOut
|
|
58662
58214
|
*/
|
|
58663
|
-
attributes:
|
|
58215
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
58664
58216
|
/**
|
|
58665
58217
|
*
|
|
58666
58218
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -58669,6 +58221,44 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
58669
58221
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
58670
58222
|
}
|
|
58671
58223
|
|
|
58224
|
+
/**
|
|
58225
|
+
*
|
|
58226
|
+
* @export
|
|
58227
|
+
* @interface JsonApiUserDataFilterOutAttributes
|
|
58228
|
+
*/
|
|
58229
|
+
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
58230
|
+
/**
|
|
58231
|
+
*
|
|
58232
|
+
* @type {string}
|
|
58233
|
+
* @memberof JsonApiUserDataFilterOutAttributes
|
|
58234
|
+
*/
|
|
58235
|
+
title?: string;
|
|
58236
|
+
/**
|
|
58237
|
+
*
|
|
58238
|
+
* @type {string}
|
|
58239
|
+
* @memberof JsonApiUserDataFilterOutAttributes
|
|
58240
|
+
*/
|
|
58241
|
+
description?: string;
|
|
58242
|
+
/**
|
|
58243
|
+
*
|
|
58244
|
+
* @type {Array<string>}
|
|
58245
|
+
* @memberof JsonApiUserDataFilterOutAttributes
|
|
58246
|
+
*/
|
|
58247
|
+
tags?: Array<string>;
|
|
58248
|
+
/**
|
|
58249
|
+
*
|
|
58250
|
+
* @type {boolean}
|
|
58251
|
+
* @memberof JsonApiUserDataFilterOutAttributes
|
|
58252
|
+
*/
|
|
58253
|
+
areRelationsValid?: boolean;
|
|
58254
|
+
/**
|
|
58255
|
+
*
|
|
58256
|
+
* @type {string}
|
|
58257
|
+
* @memberof JsonApiUserDataFilterOutAttributes
|
|
58258
|
+
*/
|
|
58259
|
+
maql: string;
|
|
58260
|
+
}
|
|
58261
|
+
|
|
58672
58262
|
/**
|
|
58673
58263
|
*
|
|
58674
58264
|
* @export
|
|
@@ -58721,10 +58311,10 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
58721
58311
|
links?: ListLinks;
|
|
58722
58312
|
/**
|
|
58723
58313
|
*
|
|
58724
|
-
* @type {
|
|
58314
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
58725
58315
|
* @memberof JsonApiUserDataFilterOutList
|
|
58726
58316
|
*/
|
|
58727
|
-
meta?:
|
|
58317
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
58728
58318
|
/**
|
|
58729
58319
|
* Included resources
|
|
58730
58320
|
* @type {Array<JsonApiUserDataFilterOutIncludes>}
|
|
@@ -58741,16 +58331,16 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
58741
58331
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
58742
58332
|
/**
|
|
58743
58333
|
*
|
|
58744
|
-
* @type {
|
|
58334
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
58745
58335
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
58746
58336
|
*/
|
|
58747
|
-
user?:
|
|
58337
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
58748
58338
|
/**
|
|
58749
58339
|
*
|
|
58750
|
-
* @type {
|
|
58340
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
58751
58341
|
* @memberof JsonApiUserDataFilterOutRelationships
|
|
58752
58342
|
*/
|
|
58753
|
-
userGroup?:
|
|
58343
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
58754
58344
|
/**
|
|
58755
58345
|
*
|
|
58756
58346
|
* @type {JsonApiVisualizationObjectOutRelationshipsFacts}
|
|
@@ -58815,10 +58405,10 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
58815
58405
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
58816
58406
|
/**
|
|
58817
58407
|
*
|
|
58818
|
-
* @type {
|
|
58408
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
58819
58409
|
* @memberof JsonApiUserDataFilterOutWithLinks
|
|
58820
58410
|
*/
|
|
58821
|
-
attributes:
|
|
58411
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
58822
58412
|
/**
|
|
58823
58413
|
*
|
|
58824
58414
|
* @type {JsonApiUserDataFilterOutRelationships}
|
|
@@ -58865,10 +58455,10 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
58865
58455
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
58866
58456
|
/**
|
|
58867
58457
|
*
|
|
58868
|
-
* @type {
|
|
58458
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
58869
58459
|
* @memberof JsonApiUserDataFilterPatch
|
|
58870
58460
|
*/
|
|
58871
|
-
relationships?:
|
|
58461
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
58872
58462
|
}
|
|
58873
58463
|
|
|
58874
58464
|
/**
|
|
@@ -58923,6 +58513,26 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
58923
58513
|
data: JsonApiUserDataFilterPatch;
|
|
58924
58514
|
}
|
|
58925
58515
|
|
|
58516
|
+
/**
|
|
58517
|
+
*
|
|
58518
|
+
* @export
|
|
58519
|
+
* @interface JsonApiUserDataFilterPatchRelationships
|
|
58520
|
+
*/
|
|
58521
|
+
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
58522
|
+
/**
|
|
58523
|
+
*
|
|
58524
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUser}
|
|
58525
|
+
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
58526
|
+
*/
|
|
58527
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
58528
|
+
/**
|
|
58529
|
+
*
|
|
58530
|
+
* @type {JsonApiOrganizationOutRelationshipsBootstrapUserGroup}
|
|
58531
|
+
* @memberof JsonApiUserDataFilterPatchRelationships
|
|
58532
|
+
*/
|
|
58533
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
58534
|
+
}
|
|
58535
|
+
|
|
58926
58536
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
58927
58537
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
58928
58538
|
};
|
|
@@ -58949,16 +58559,16 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
58949
58559
|
id?: string;
|
|
58950
58560
|
/**
|
|
58951
58561
|
*
|
|
58952
|
-
* @type {
|
|
58562
|
+
* @type {JsonApiUserDataFilterOutAttributes}
|
|
58953
58563
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
58954
58564
|
*/
|
|
58955
|
-
attributes:
|
|
58565
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
58956
58566
|
/**
|
|
58957
58567
|
*
|
|
58958
|
-
* @type {
|
|
58568
|
+
* @type {JsonApiUserDataFilterPatchRelationships}
|
|
58959
58569
|
* @memberof JsonApiUserDataFilterPostOptionalId
|
|
58960
58570
|
*/
|
|
58961
|
-
relationships?:
|
|
58571
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
58962
58572
|
}
|
|
58963
58573
|
|
|
58964
58574
|
/**
|
|
@@ -59151,10 +58761,10 @@ export declare interface JsonApiUserGroupOutList {
|
|
|
59151
58761
|
links?: ListLinks;
|
|
59152
58762
|
/**
|
|
59153
58763
|
*
|
|
59154
|
-
* @type {
|
|
58764
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
59155
58765
|
* @memberof JsonApiUserGroupOutList
|
|
59156
58766
|
*/
|
|
59157
|
-
meta?:
|
|
58767
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
59158
58768
|
/**
|
|
59159
58769
|
* Included resources
|
|
59160
58770
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -59171,24 +58781,10 @@ export declare interface JsonApiUserGroupOutList {
|
|
|
59171
58781
|
export declare interface JsonApiUserGroupOutRelationships {
|
|
59172
58782
|
/**
|
|
59173
58783
|
*
|
|
59174
|
-
* @type {
|
|
58784
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
59175
58785
|
* @memberof JsonApiUserGroupOutRelationships
|
|
59176
58786
|
*/
|
|
59177
|
-
parents?:
|
|
59178
|
-
}
|
|
59179
|
-
|
|
59180
|
-
/**
|
|
59181
|
-
*
|
|
59182
|
-
* @export
|
|
59183
|
-
* @interface JsonApiUserGroupOutRelationshipsParents
|
|
59184
|
-
*/
|
|
59185
|
-
export declare interface JsonApiUserGroupOutRelationshipsParents {
|
|
59186
|
-
/**
|
|
59187
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
59188
|
-
* @type {Array<JsonApiUserGroupLinkage>}
|
|
59189
|
-
* @memberof JsonApiUserGroupOutRelationshipsParents
|
|
59190
|
-
*/
|
|
59191
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
58787
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
59192
58788
|
}
|
|
59193
58789
|
|
|
59194
58790
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
@@ -59418,10 +59014,10 @@ export declare interface JsonApiUserIdentifierOutList {
|
|
|
59418
59014
|
links?: ListLinks;
|
|
59419
59015
|
/**
|
|
59420
59016
|
*
|
|
59421
|
-
* @type {
|
|
59017
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
59422
59018
|
* @memberof JsonApiUserIdentifierOutList
|
|
59423
59019
|
*/
|
|
59424
|
-
meta?:
|
|
59020
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
59425
59021
|
}
|
|
59426
59022
|
|
|
59427
59023
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -59663,10 +59259,10 @@ export declare interface JsonApiUserOutList {
|
|
|
59663
59259
|
links?: ListLinks;
|
|
59664
59260
|
/**
|
|
59665
59261
|
*
|
|
59666
|
-
* @type {
|
|
59262
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
59667
59263
|
* @memberof JsonApiUserOutList
|
|
59668
59264
|
*/
|
|
59669
|
-
meta?:
|
|
59265
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
59670
59266
|
/**
|
|
59671
59267
|
* Included resources
|
|
59672
59268
|
* @type {Array<JsonApiUserGroupOutWithLinks>}
|
|
@@ -59683,10 +59279,24 @@ export declare interface JsonApiUserOutList {
|
|
|
59683
59279
|
export declare interface JsonApiUserOutRelationships {
|
|
59684
59280
|
/**
|
|
59685
59281
|
*
|
|
59686
|
-
* @type {
|
|
59282
|
+
* @type {JsonApiUserOutRelationshipsUserGroups}
|
|
59687
59283
|
* @memberof JsonApiUserOutRelationships
|
|
59688
59284
|
*/
|
|
59689
|
-
userGroups?:
|
|
59285
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
59286
|
+
}
|
|
59287
|
+
|
|
59288
|
+
/**
|
|
59289
|
+
*
|
|
59290
|
+
* @export
|
|
59291
|
+
* @interface JsonApiUserOutRelationshipsUserGroups
|
|
59292
|
+
*/
|
|
59293
|
+
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
59294
|
+
/**
|
|
59295
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
59296
|
+
* @type {Array<JsonApiUserGroupLinkage>}
|
|
59297
|
+
* @memberof JsonApiUserOutRelationshipsUserGroups
|
|
59298
|
+
*/
|
|
59299
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
59690
59300
|
}
|
|
59691
59301
|
|
|
59692
59302
|
export declare const JsonApiUserOutTypeEnum: {
|
|
@@ -59811,12 +59421,62 @@ export declare interface JsonApiUserSettingIn {
|
|
|
59811
59421
|
id: string;
|
|
59812
59422
|
/**
|
|
59813
59423
|
*
|
|
59814
|
-
* @type {
|
|
59424
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
59815
59425
|
* @memberof JsonApiUserSettingIn
|
|
59816
59426
|
*/
|
|
59817
|
-
attributes?:
|
|
59427
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
59818
59428
|
}
|
|
59819
59429
|
|
|
59430
|
+
/**
|
|
59431
|
+
*
|
|
59432
|
+
* @export
|
|
59433
|
+
* @interface JsonApiUserSettingInAttributes
|
|
59434
|
+
*/
|
|
59435
|
+
export declare interface JsonApiUserSettingInAttributes {
|
|
59436
|
+
/**
|
|
59437
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
59438
|
+
* @type {object}
|
|
59439
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
59440
|
+
*/
|
|
59441
|
+
content?: object;
|
|
59442
|
+
/**
|
|
59443
|
+
*
|
|
59444
|
+
* @type {string}
|
|
59445
|
+
* @memberof JsonApiUserSettingInAttributes
|
|
59446
|
+
*/
|
|
59447
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
59448
|
+
}
|
|
59449
|
+
|
|
59450
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
59451
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
59452
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
59453
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
59454
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
59455
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
59456
|
+
readonly LOCALE: "LOCALE";
|
|
59457
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
59458
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
59459
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
59460
|
+
readonly WEEK_START: "WEEK_START";
|
|
59461
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
59462
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
59463
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
59464
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
59465
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
59466
|
+
readonly ALERT: "ALERT";
|
|
59467
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
59468
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
59469
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
59470
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
59471
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
59472
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
59473
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
59474
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
59475
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
59476
|
+
};
|
|
59477
|
+
|
|
59478
|
+
export declare type JsonApiUserSettingInAttributesTypeEnum = typeof JsonApiUserSettingInAttributesTypeEnum[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
59479
|
+
|
|
59820
59480
|
/**
|
|
59821
59481
|
*
|
|
59822
59482
|
* @export
|
|
@@ -59857,10 +59517,10 @@ export declare interface JsonApiUserSettingOut {
|
|
|
59857
59517
|
id: string;
|
|
59858
59518
|
/**
|
|
59859
59519
|
*
|
|
59860
|
-
* @type {
|
|
59520
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
59861
59521
|
* @memberof JsonApiUserSettingOut
|
|
59862
59522
|
*/
|
|
59863
|
-
attributes?:
|
|
59523
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
59864
59524
|
}
|
|
59865
59525
|
|
|
59866
59526
|
/**
|
|
@@ -59903,10 +59563,10 @@ export declare interface JsonApiUserSettingOutList {
|
|
|
59903
59563
|
links?: ListLinks;
|
|
59904
59564
|
/**
|
|
59905
59565
|
*
|
|
59906
|
-
* @type {
|
|
59566
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
59907
59567
|
* @memberof JsonApiUserSettingOutList
|
|
59908
59568
|
*/
|
|
59909
|
-
meta?:
|
|
59569
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
59910
59570
|
}
|
|
59911
59571
|
|
|
59912
59572
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -59935,10 +59595,10 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
59935
59595
|
id: string;
|
|
59936
59596
|
/**
|
|
59937
59597
|
*
|
|
59938
|
-
* @type {
|
|
59598
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
59939
59599
|
* @memberof JsonApiUserSettingOutWithLinks
|
|
59940
59600
|
*/
|
|
59941
|
-
attributes?:
|
|
59601
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
59942
59602
|
/**
|
|
59943
59603
|
*
|
|
59944
59604
|
* @type {ObjectLinks}
|
|
@@ -59980,10 +59640,10 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
59980
59640
|
id: string;
|
|
59981
59641
|
/**
|
|
59982
59642
|
*
|
|
59983
|
-
* @type {
|
|
59643
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
59984
59644
|
* @memberof JsonApiVisualizationObjectIn
|
|
59985
59645
|
*/
|
|
59986
|
-
attributes:
|
|
59646
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
59987
59647
|
}
|
|
59988
59648
|
|
|
59989
59649
|
/**
|
|
@@ -60166,10 +59826,10 @@ export declare interface JsonApiVisualizationObjectOutList {
|
|
|
60166
59826
|
links?: ListLinks;
|
|
60167
59827
|
/**
|
|
60168
59828
|
*
|
|
60169
|
-
* @type {
|
|
59829
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
60170
59830
|
* @memberof JsonApiVisualizationObjectOutList
|
|
60171
59831
|
*/
|
|
60172
|
-
meta?:
|
|
59832
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
60173
59833
|
/**
|
|
60174
59834
|
* Included resources
|
|
60175
59835
|
* @type {Array<JsonApiMetricOutIncludes>}
|
|
@@ -60475,10 +60135,10 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
60475
60135
|
id?: string;
|
|
60476
60136
|
/**
|
|
60477
60137
|
*
|
|
60478
|
-
* @type {
|
|
60138
|
+
* @type {JsonApiFilterContextOutAttributes}
|
|
60479
60139
|
* @memberof JsonApiVisualizationObjectPostOptionalId
|
|
60480
60140
|
*/
|
|
60481
|
-
attributes:
|
|
60141
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
60482
60142
|
}
|
|
60483
60143
|
|
|
60484
60144
|
/**
|
|
@@ -60696,10 +60356,10 @@ export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
|
60696
60356
|
links?: ListLinks;
|
|
60697
60357
|
/**
|
|
60698
60358
|
*
|
|
60699
|
-
* @type {
|
|
60359
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
60700
60360
|
* @memberof JsonApiWorkspaceDataFilterOutList
|
|
60701
60361
|
*/
|
|
60702
|
-
meta?:
|
|
60362
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
60703
60363
|
/**
|
|
60704
60364
|
* Included resources
|
|
60705
60365
|
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
@@ -60864,40 +60524,270 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
60864
60524
|
id: string;
|
|
60865
60525
|
/**
|
|
60866
60526
|
*
|
|
60867
|
-
* @type {
|
|
60527
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
60868
60528
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
60869
60529
|
*/
|
|
60870
|
-
attributes?:
|
|
60530
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
60871
60531
|
/**
|
|
60872
60532
|
*
|
|
60873
|
-
* @type {
|
|
60533
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
60874
60534
|
* @memberof JsonApiWorkspaceDataFilterSettingIn
|
|
60875
60535
|
*/
|
|
60876
|
-
relationships?:
|
|
60536
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
60537
|
+
}
|
|
60538
|
+
|
|
60539
|
+
/**
|
|
60540
|
+
*
|
|
60541
|
+
* @export
|
|
60542
|
+
* @interface JsonApiWorkspaceDataFilterSettingInDocument
|
|
60543
|
+
*/
|
|
60544
|
+
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
60545
|
+
/**
|
|
60546
|
+
*
|
|
60547
|
+
* @type {JsonApiWorkspaceDataFilterSettingIn}
|
|
60548
|
+
* @memberof JsonApiWorkspaceDataFilterSettingInDocument
|
|
60549
|
+
*/
|
|
60550
|
+
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
60551
|
+
}
|
|
60552
|
+
|
|
60553
|
+
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
60554
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60555
|
+
};
|
|
60556
|
+
|
|
60557
|
+
export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = typeof JsonApiWorkspaceDataFilterSettingInTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
60558
|
+
|
|
60559
|
+
/**
|
|
60560
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
60561
|
+
* @export
|
|
60562
|
+
* @interface JsonApiWorkspaceDataFilterSettingLinkage
|
|
60563
|
+
*/
|
|
60564
|
+
export declare interface JsonApiWorkspaceDataFilterSettingLinkage {
|
|
60565
|
+
/**
|
|
60566
|
+
*
|
|
60567
|
+
* @type {string}
|
|
60568
|
+
* @memberof JsonApiWorkspaceDataFilterSettingLinkage
|
|
60569
|
+
*/
|
|
60570
|
+
id: string;
|
|
60571
|
+
/**
|
|
60572
|
+
*
|
|
60573
|
+
* @type {string}
|
|
60574
|
+
* @memberof JsonApiWorkspaceDataFilterSettingLinkage
|
|
60575
|
+
*/
|
|
60576
|
+
type: JsonApiWorkspaceDataFilterSettingLinkageTypeEnum;
|
|
60577
|
+
}
|
|
60578
|
+
|
|
60579
|
+
export declare const JsonApiWorkspaceDataFilterSettingLinkageTypeEnum: {
|
|
60580
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60581
|
+
};
|
|
60582
|
+
|
|
60583
|
+
export declare type JsonApiWorkspaceDataFilterSettingLinkageTypeEnum = typeof JsonApiWorkspaceDataFilterSettingLinkageTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingLinkageTypeEnum];
|
|
60584
|
+
|
|
60585
|
+
/**
|
|
60586
|
+
* JSON:API representation of workspaceDataFilterSetting entity.
|
|
60587
|
+
* @export
|
|
60588
|
+
* @interface JsonApiWorkspaceDataFilterSettingOut
|
|
60589
|
+
*/
|
|
60590
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
60591
|
+
/**
|
|
60592
|
+
* Object type
|
|
60593
|
+
* @type {string}
|
|
60594
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60595
|
+
*/
|
|
60596
|
+
type: JsonApiWorkspaceDataFilterSettingOutTypeEnum;
|
|
60597
|
+
/**
|
|
60598
|
+
* API identifier of an object
|
|
60599
|
+
* @type {string}
|
|
60600
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60601
|
+
*/
|
|
60602
|
+
id: string;
|
|
60603
|
+
/**
|
|
60604
|
+
*
|
|
60605
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
60606
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60607
|
+
*/
|
|
60608
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
60609
|
+
/**
|
|
60610
|
+
*
|
|
60611
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
60612
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60613
|
+
*/
|
|
60614
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
60615
|
+
/**
|
|
60616
|
+
*
|
|
60617
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
60618
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60619
|
+
*/
|
|
60620
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
60621
|
+
}
|
|
60622
|
+
|
|
60623
|
+
/**
|
|
60624
|
+
*
|
|
60625
|
+
* @export
|
|
60626
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutDocument
|
|
60627
|
+
*/
|
|
60628
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
60629
|
+
/**
|
|
60630
|
+
*
|
|
60631
|
+
* @type {JsonApiWorkspaceDataFilterSettingOut}
|
|
60632
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
60633
|
+
*/
|
|
60634
|
+
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
60635
|
+
/**
|
|
60636
|
+
*
|
|
60637
|
+
* @type {ObjectLinks}
|
|
60638
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
60639
|
+
*/
|
|
60640
|
+
links?: ObjectLinks;
|
|
60641
|
+
/**
|
|
60642
|
+
* Included resources
|
|
60643
|
+
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
60644
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
60645
|
+
*/
|
|
60646
|
+
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
60647
|
+
}
|
|
60648
|
+
|
|
60649
|
+
/**
|
|
60650
|
+
* A JSON:API document with a list of resources
|
|
60651
|
+
* @export
|
|
60652
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutList
|
|
60653
|
+
*/
|
|
60654
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
60655
|
+
/**
|
|
60656
|
+
*
|
|
60657
|
+
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
60658
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
60659
|
+
*/
|
|
60660
|
+
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
60661
|
+
/**
|
|
60662
|
+
*
|
|
60663
|
+
* @type {ListLinks}
|
|
60664
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
60665
|
+
*/
|
|
60666
|
+
links?: ListLinks;
|
|
60667
|
+
/**
|
|
60668
|
+
*
|
|
60669
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
60670
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
60671
|
+
*/
|
|
60672
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
60673
|
+
/**
|
|
60674
|
+
* Included resources
|
|
60675
|
+
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
60676
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
60677
|
+
*/
|
|
60678
|
+
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
60679
|
+
}
|
|
60680
|
+
|
|
60681
|
+
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
60682
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60683
|
+
};
|
|
60684
|
+
|
|
60685
|
+
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
60686
|
+
|
|
60687
|
+
/**
|
|
60688
|
+
*
|
|
60689
|
+
* @export
|
|
60690
|
+
* @interface JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60691
|
+
*/
|
|
60692
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
60693
|
+
/**
|
|
60694
|
+
* Object type
|
|
60695
|
+
* @type {string}
|
|
60696
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60697
|
+
*/
|
|
60698
|
+
type: JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum;
|
|
60699
|
+
/**
|
|
60700
|
+
* API identifier of an object
|
|
60701
|
+
* @type {string}
|
|
60702
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60703
|
+
*/
|
|
60704
|
+
id: string;
|
|
60705
|
+
/**
|
|
60706
|
+
*
|
|
60707
|
+
* @type {JsonApiVisualizationObjectOutMeta}
|
|
60708
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60709
|
+
*/
|
|
60710
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
60711
|
+
/**
|
|
60712
|
+
*
|
|
60713
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
60714
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60715
|
+
*/
|
|
60716
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
60717
|
+
/**
|
|
60718
|
+
*
|
|
60719
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
60720
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60721
|
+
*/
|
|
60722
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
60723
|
+
/**
|
|
60724
|
+
*
|
|
60725
|
+
* @type {ObjectLinks}
|
|
60726
|
+
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
60727
|
+
*/
|
|
60728
|
+
links?: ObjectLinks;
|
|
60729
|
+
}
|
|
60730
|
+
|
|
60731
|
+
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
60732
|
+
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60733
|
+
};
|
|
60734
|
+
|
|
60735
|
+
export declare type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum];
|
|
60736
|
+
|
|
60737
|
+
/**
|
|
60738
|
+
* JSON:API representation of patching workspaceDataFilterSetting entity.
|
|
60739
|
+
* @export
|
|
60740
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatch
|
|
60741
|
+
*/
|
|
60742
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
60743
|
+
/**
|
|
60744
|
+
* Object type
|
|
60745
|
+
* @type {string}
|
|
60746
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
60747
|
+
*/
|
|
60748
|
+
type: JsonApiWorkspaceDataFilterSettingPatchTypeEnum;
|
|
60749
|
+
/**
|
|
60750
|
+
* API identifier of an object
|
|
60751
|
+
* @type {string}
|
|
60752
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
60753
|
+
*/
|
|
60754
|
+
id: string;
|
|
60755
|
+
/**
|
|
60756
|
+
*
|
|
60757
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchAttributes}
|
|
60758
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
60759
|
+
*/
|
|
60760
|
+
attributes?: JsonApiWorkspaceDataFilterSettingPatchAttributes;
|
|
60761
|
+
/**
|
|
60762
|
+
*
|
|
60763
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationships}
|
|
60764
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
60765
|
+
*/
|
|
60766
|
+
relationships?: JsonApiWorkspaceDataFilterSettingPatchRelationships;
|
|
60877
60767
|
}
|
|
60878
60768
|
|
|
60879
60769
|
/**
|
|
60880
60770
|
*
|
|
60881
60771
|
* @export
|
|
60882
|
-
* @interface
|
|
60772
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
60883
60773
|
*/
|
|
60884
|
-
export declare interface
|
|
60774
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
60885
60775
|
/**
|
|
60886
60776
|
*
|
|
60887
60777
|
* @type {string}
|
|
60888
|
-
* @memberof
|
|
60778
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
60889
60779
|
*/
|
|
60890
60780
|
title?: string;
|
|
60891
60781
|
/**
|
|
60892
60782
|
*
|
|
60893
60783
|
* @type {string}
|
|
60894
|
-
* @memberof
|
|
60784
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
60895
60785
|
*/
|
|
60896
60786
|
description?: string;
|
|
60897
60787
|
/**
|
|
60898
60788
|
*
|
|
60899
60789
|
* @type {Array<string>}
|
|
60900
|
-
* @memberof
|
|
60790
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchAttributes
|
|
60901
60791
|
*/
|
|
60902
60792
|
filterValues?: Array<string>;
|
|
60903
60793
|
}
|
|
@@ -60905,275 +60795,45 @@ export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
|
60905
60795
|
/**
|
|
60906
60796
|
*
|
|
60907
60797
|
* @export
|
|
60908
|
-
* @interface
|
|
60798
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchDocument
|
|
60909
60799
|
*/
|
|
60910
|
-
export declare interface
|
|
60800
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
60911
60801
|
/**
|
|
60912
60802
|
*
|
|
60913
|
-
* @type {
|
|
60914
|
-
* @memberof
|
|
60803
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatch}
|
|
60804
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchDocument
|
|
60915
60805
|
*/
|
|
60916
|
-
data:
|
|
60806
|
+
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
60917
60807
|
}
|
|
60918
60808
|
|
|
60919
60809
|
/**
|
|
60920
60810
|
*
|
|
60921
60811
|
* @export
|
|
60922
|
-
* @interface
|
|
60812
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
60923
60813
|
*/
|
|
60924
|
-
export declare interface
|
|
60814
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
60925
60815
|
/**
|
|
60926
60816
|
*
|
|
60927
|
-
* @type {
|
|
60928
|
-
* @memberof
|
|
60817
|
+
* @type {JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter}
|
|
60818
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationships
|
|
60929
60819
|
*/
|
|
60930
|
-
workspaceDataFilter?:
|
|
60820
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
60931
60821
|
}
|
|
60932
60822
|
|
|
60933
60823
|
/**
|
|
60934
60824
|
*
|
|
60935
60825
|
* @export
|
|
60936
|
-
* @interface
|
|
60826
|
+
* @interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
60937
60827
|
*/
|
|
60938
|
-
export declare interface
|
|
60828
|
+
export declare interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
60939
60829
|
/**
|
|
60940
60830
|
*
|
|
60941
60831
|
* @type {JsonApiWorkspaceDataFilterToOneLinkage}
|
|
60942
|
-
* @memberof
|
|
60832
|
+
* @memberof JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter
|
|
60943
60833
|
*/
|
|
60944
60834
|
data: JsonApiWorkspaceDataFilterToOneLinkage | null;
|
|
60945
60835
|
}
|
|
60946
60836
|
|
|
60947
|
-
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
60948
|
-
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60949
|
-
};
|
|
60950
|
-
|
|
60951
|
-
export declare type JsonApiWorkspaceDataFilterSettingInTypeEnum = typeof JsonApiWorkspaceDataFilterSettingInTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
60952
|
-
|
|
60953
|
-
/**
|
|
60954
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
60955
|
-
* @export
|
|
60956
|
-
* @interface JsonApiWorkspaceDataFilterSettingLinkage
|
|
60957
|
-
*/
|
|
60958
|
-
export declare interface JsonApiWorkspaceDataFilterSettingLinkage {
|
|
60959
|
-
/**
|
|
60960
|
-
*
|
|
60961
|
-
* @type {string}
|
|
60962
|
-
* @memberof JsonApiWorkspaceDataFilterSettingLinkage
|
|
60963
|
-
*/
|
|
60964
|
-
id: string;
|
|
60965
|
-
/**
|
|
60966
|
-
*
|
|
60967
|
-
* @type {string}
|
|
60968
|
-
* @memberof JsonApiWorkspaceDataFilterSettingLinkage
|
|
60969
|
-
*/
|
|
60970
|
-
type: JsonApiWorkspaceDataFilterSettingLinkageTypeEnum;
|
|
60971
|
-
}
|
|
60972
|
-
|
|
60973
|
-
export declare const JsonApiWorkspaceDataFilterSettingLinkageTypeEnum: {
|
|
60974
|
-
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
60975
|
-
};
|
|
60976
|
-
|
|
60977
|
-
export declare type JsonApiWorkspaceDataFilterSettingLinkageTypeEnum = typeof JsonApiWorkspaceDataFilterSettingLinkageTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingLinkageTypeEnum];
|
|
60978
|
-
|
|
60979
|
-
/**
|
|
60980
|
-
* JSON:API representation of workspaceDataFilterSetting entity.
|
|
60981
|
-
* @export
|
|
60982
|
-
* @interface JsonApiWorkspaceDataFilterSettingOut
|
|
60983
|
-
*/
|
|
60984
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
60985
|
-
/**
|
|
60986
|
-
* Object type
|
|
60987
|
-
* @type {string}
|
|
60988
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60989
|
-
*/
|
|
60990
|
-
type: JsonApiWorkspaceDataFilterSettingOutTypeEnum;
|
|
60991
|
-
/**
|
|
60992
|
-
* API identifier of an object
|
|
60993
|
-
* @type {string}
|
|
60994
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
60995
|
-
*/
|
|
60996
|
-
id: string;
|
|
60997
|
-
/**
|
|
60998
|
-
*
|
|
60999
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
61000
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
61001
|
-
*/
|
|
61002
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
61003
|
-
/**
|
|
61004
|
-
*
|
|
61005
|
-
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
61006
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
61007
|
-
*/
|
|
61008
|
-
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
61009
|
-
/**
|
|
61010
|
-
*
|
|
61011
|
-
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
61012
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOut
|
|
61013
|
-
*/
|
|
61014
|
-
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
61015
|
-
}
|
|
61016
|
-
|
|
61017
|
-
/**
|
|
61018
|
-
*
|
|
61019
|
-
* @export
|
|
61020
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutDocument
|
|
61021
|
-
*/
|
|
61022
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
61023
|
-
/**
|
|
61024
|
-
*
|
|
61025
|
-
* @type {JsonApiWorkspaceDataFilterSettingOut}
|
|
61026
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
61027
|
-
*/
|
|
61028
|
-
data: JsonApiWorkspaceDataFilterSettingOut;
|
|
61029
|
-
/**
|
|
61030
|
-
*
|
|
61031
|
-
* @type {ObjectLinks}
|
|
61032
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
61033
|
-
*/
|
|
61034
|
-
links?: ObjectLinks;
|
|
61035
|
-
/**
|
|
61036
|
-
* Included resources
|
|
61037
|
-
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
61038
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutDocument
|
|
61039
|
-
*/
|
|
61040
|
-
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
61041
|
-
}
|
|
61042
|
-
|
|
61043
|
-
/**
|
|
61044
|
-
* A JSON:API document with a list of resources
|
|
61045
|
-
* @export
|
|
61046
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutList
|
|
61047
|
-
*/
|
|
61048
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
61049
|
-
/**
|
|
61050
|
-
*
|
|
61051
|
-
* @type {Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>}
|
|
61052
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
61053
|
-
*/
|
|
61054
|
-
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
61055
|
-
/**
|
|
61056
|
-
*
|
|
61057
|
-
* @type {ListLinks}
|
|
61058
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
61059
|
-
*/
|
|
61060
|
-
links?: ListLinks;
|
|
61061
|
-
/**
|
|
61062
|
-
*
|
|
61063
|
-
* @type {JsonApiColorPaletteOutListMeta}
|
|
61064
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
61065
|
-
*/
|
|
61066
|
-
meta?: JsonApiColorPaletteOutListMeta;
|
|
61067
|
-
/**
|
|
61068
|
-
* Included resources
|
|
61069
|
-
* @type {Array<JsonApiWorkspaceDataFilterOutWithLinks>}
|
|
61070
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutList
|
|
61071
|
-
*/
|
|
61072
|
-
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
61073
|
-
}
|
|
61074
|
-
|
|
61075
|
-
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
61076
|
-
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
61077
|
-
};
|
|
61078
|
-
|
|
61079
|
-
export declare type JsonApiWorkspaceDataFilterSettingOutTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutTypeEnum];
|
|
61080
|
-
|
|
61081
|
-
/**
|
|
61082
|
-
*
|
|
61083
|
-
* @export
|
|
61084
|
-
* @interface JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61085
|
-
*/
|
|
61086
|
-
export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
61087
|
-
/**
|
|
61088
|
-
* Object type
|
|
61089
|
-
* @type {string}
|
|
61090
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61091
|
-
*/
|
|
61092
|
-
type: JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum;
|
|
61093
|
-
/**
|
|
61094
|
-
* API identifier of an object
|
|
61095
|
-
* @type {string}
|
|
61096
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61097
|
-
*/
|
|
61098
|
-
id: string;
|
|
61099
|
-
/**
|
|
61100
|
-
*
|
|
61101
|
-
* @type {JsonApiVisualizationObjectOutMeta}
|
|
61102
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61103
|
-
*/
|
|
61104
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
61105
|
-
/**
|
|
61106
|
-
*
|
|
61107
|
-
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
61108
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61109
|
-
*/
|
|
61110
|
-
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
61111
|
-
/**
|
|
61112
|
-
*
|
|
61113
|
-
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
61114
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61115
|
-
*/
|
|
61116
|
-
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
61117
|
-
/**
|
|
61118
|
-
*
|
|
61119
|
-
* @type {ObjectLinks}
|
|
61120
|
-
* @memberof JsonApiWorkspaceDataFilterSettingOutWithLinks
|
|
61121
|
-
*/
|
|
61122
|
-
links?: ObjectLinks;
|
|
61123
|
-
}
|
|
61124
|
-
|
|
61125
|
-
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
61126
|
-
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
61127
|
-
};
|
|
61128
|
-
|
|
61129
|
-
export declare type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = typeof JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum[keyof typeof JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum];
|
|
61130
|
-
|
|
61131
|
-
/**
|
|
61132
|
-
* JSON:API representation of patching workspaceDataFilterSetting entity.
|
|
61133
|
-
* @export
|
|
61134
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatch
|
|
61135
|
-
*/
|
|
61136
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
61137
|
-
/**
|
|
61138
|
-
* Object type
|
|
61139
|
-
* @type {string}
|
|
61140
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
61141
|
-
*/
|
|
61142
|
-
type: JsonApiWorkspaceDataFilterSettingPatchTypeEnum;
|
|
61143
|
-
/**
|
|
61144
|
-
* API identifier of an object
|
|
61145
|
-
* @type {string}
|
|
61146
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
61147
|
-
*/
|
|
61148
|
-
id: string;
|
|
61149
|
-
/**
|
|
61150
|
-
*
|
|
61151
|
-
* @type {JsonApiWorkspaceDataFilterSettingInAttributes}
|
|
61152
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
61153
|
-
*/
|
|
61154
|
-
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
61155
|
-
/**
|
|
61156
|
-
*
|
|
61157
|
-
* @type {JsonApiWorkspaceDataFilterSettingInRelationships}
|
|
61158
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatch
|
|
61159
|
-
*/
|
|
61160
|
-
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
61161
|
-
}
|
|
61162
|
-
|
|
61163
|
-
/**
|
|
61164
|
-
*
|
|
61165
|
-
* @export
|
|
61166
|
-
* @interface JsonApiWorkspaceDataFilterSettingPatchDocument
|
|
61167
|
-
*/
|
|
61168
|
-
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
61169
|
-
/**
|
|
61170
|
-
*
|
|
61171
|
-
* @type {JsonApiWorkspaceDataFilterSettingPatch}
|
|
61172
|
-
* @memberof JsonApiWorkspaceDataFilterSettingPatchDocument
|
|
61173
|
-
*/
|
|
61174
|
-
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
61175
|
-
}
|
|
61176
|
-
|
|
61177
60837
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
61178
60838
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
61179
60839
|
};
|
|
@@ -61420,10 +61080,10 @@ export declare interface JsonApiWorkspaceOutList {
|
|
|
61420
61080
|
links?: ListLinks;
|
|
61421
61081
|
/**
|
|
61422
61082
|
*
|
|
61423
|
-
* @type {
|
|
61083
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
61424
61084
|
* @memberof JsonApiWorkspaceOutList
|
|
61425
61085
|
*/
|
|
61426
|
-
meta?:
|
|
61086
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
61427
61087
|
/**
|
|
61428
61088
|
* Included resources
|
|
61429
61089
|
* @type {Array<JsonApiWorkspaceOutWithLinks>}
|
|
@@ -61688,10 +61348,10 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
61688
61348
|
id: string;
|
|
61689
61349
|
/**
|
|
61690
61350
|
*
|
|
61691
|
-
* @type {
|
|
61351
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
61692
61352
|
* @memberof JsonApiWorkspaceSettingIn
|
|
61693
61353
|
*/
|
|
61694
|
-
attributes?:
|
|
61354
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
61695
61355
|
}
|
|
61696
61356
|
|
|
61697
61357
|
/**
|
|
@@ -61740,10 +61400,10 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
61740
61400
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
61741
61401
|
/**
|
|
61742
61402
|
*
|
|
61743
|
-
* @type {
|
|
61403
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
61744
61404
|
* @memberof JsonApiWorkspaceSettingOut
|
|
61745
61405
|
*/
|
|
61746
|
-
attributes?:
|
|
61406
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
61747
61407
|
}
|
|
61748
61408
|
|
|
61749
61409
|
/**
|
|
@@ -61786,10 +61446,10 @@ export declare interface JsonApiWorkspaceSettingOutList {
|
|
|
61786
61446
|
links?: ListLinks;
|
|
61787
61447
|
/**
|
|
61788
61448
|
*
|
|
61789
|
-
* @type {
|
|
61449
|
+
* @type {JsonApiApiTokenOutListMeta}
|
|
61790
61450
|
* @memberof JsonApiWorkspaceSettingOutList
|
|
61791
61451
|
*/
|
|
61792
|
-
meta?:
|
|
61452
|
+
meta?: JsonApiApiTokenOutListMeta;
|
|
61793
61453
|
}
|
|
61794
61454
|
|
|
61795
61455
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -61824,10 +61484,10 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
61824
61484
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
61825
61485
|
/**
|
|
61826
61486
|
*
|
|
61827
|
-
* @type {
|
|
61487
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
61828
61488
|
* @memberof JsonApiWorkspaceSettingOutWithLinks
|
|
61829
61489
|
*/
|
|
61830
|
-
attributes?:
|
|
61490
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
61831
61491
|
/**
|
|
61832
61492
|
*
|
|
61833
61493
|
* @type {ObjectLinks}
|
|
@@ -61862,10 +61522,10 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
61862
61522
|
id: string;
|
|
61863
61523
|
/**
|
|
61864
61524
|
*
|
|
61865
|
-
* @type {
|
|
61525
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
61866
61526
|
* @memberof JsonApiWorkspaceSettingPatch
|
|
61867
61527
|
*/
|
|
61868
|
-
attributes?:
|
|
61528
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
61869
61529
|
}
|
|
61870
61530
|
|
|
61871
61531
|
/**
|
|
@@ -61908,10 +61568,10 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
61908
61568
|
id?: string;
|
|
61909
61569
|
/**
|
|
61910
61570
|
*
|
|
61911
|
-
* @type {
|
|
61571
|
+
* @type {JsonApiUserSettingInAttributes}
|
|
61912
61572
|
* @memberof JsonApiWorkspaceSettingPostOptionalId
|
|
61913
61573
|
*/
|
|
61914
|
-
attributes?:
|
|
61574
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
61915
61575
|
}
|
|
61916
61576
|
|
|
61917
61577
|
/**
|
|
@@ -79185,7 +78845,7 @@ export declare interface Relative {
|
|
|
79185
78845
|
}
|
|
79186
78846
|
|
|
79187
78847
|
/**
|
|
79188
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
78848
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
79189
78849
|
* @export
|
|
79190
78850
|
* @interface RelativeDateFilter
|
|
79191
78851
|
*/
|
|
@@ -79234,12 +78894,6 @@ export declare interface RelativeDateFilterRelativeDateFilter {
|
|
|
79234
78894
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
79235
78895
|
*/
|
|
79236
78896
|
applyOnResult?: boolean;
|
|
79237
|
-
/**
|
|
79238
|
-
*
|
|
79239
|
-
* @type {BoundedFilter}
|
|
79240
|
-
* @memberof RelativeDateFilterRelativeDateFilter
|
|
79241
|
-
*/
|
|
79242
|
-
boundedFilter?: BoundedFilter;
|
|
79243
78897
|
/**
|
|
79244
78898
|
*
|
|
79245
78899
|
* @type {AfmObjectIdentifierDataset}
|
|
@@ -79421,40 +79075,6 @@ export declare interface ReportingSettingsApiResolveSettingsWithoutWorkspaceRequ
|
|
|
79421
79075
|
readonly resolveSettingsRequest: ResolveSettingsRequest;
|
|
79422
79076
|
}
|
|
79423
79077
|
|
|
79424
|
-
/**
|
|
79425
|
-
*
|
|
79426
|
-
* @export
|
|
79427
|
-
* @interface ResolvedLlmEndpoint
|
|
79428
|
-
*/
|
|
79429
|
-
export declare interface ResolvedLlmEndpoint {
|
|
79430
|
-
/**
|
|
79431
|
-
* Endpoint Id
|
|
79432
|
-
* @type {string}
|
|
79433
|
-
* @memberof ResolvedLlmEndpoint
|
|
79434
|
-
*/
|
|
79435
|
-
id: string;
|
|
79436
|
-
/**
|
|
79437
|
-
* Endpoint Title
|
|
79438
|
-
* @type {string}
|
|
79439
|
-
* @memberof ResolvedLlmEndpoint
|
|
79440
|
-
*/
|
|
79441
|
-
title: string;
|
|
79442
|
-
}
|
|
79443
|
-
|
|
79444
|
-
/**
|
|
79445
|
-
*
|
|
79446
|
-
* @export
|
|
79447
|
-
* @interface ResolvedLlmEndpoints
|
|
79448
|
-
*/
|
|
79449
|
-
export declare interface ResolvedLlmEndpoints {
|
|
79450
|
-
/**
|
|
79451
|
-
*
|
|
79452
|
-
* @type {Array<ResolvedLlmEndpoint>}
|
|
79453
|
-
* @memberof ResolvedLlmEndpoints
|
|
79454
|
-
*/
|
|
79455
|
-
data: Array<ResolvedLlmEndpoint>;
|
|
79456
|
-
}
|
|
79457
|
-
|
|
79458
79078
|
/**
|
|
79459
79079
|
* Setting and its value.
|
|
79460
79080
|
* @export
|
|
@@ -86716,64 +86336,6 @@ export declare interface ValidateByItem {
|
|
|
86716
86336
|
type: string;
|
|
86717
86337
|
}
|
|
86718
86338
|
|
|
86719
|
-
/**
|
|
86720
|
-
*
|
|
86721
|
-
* @export
|
|
86722
|
-
* @interface ValidateLLMEndpointRequest
|
|
86723
|
-
*/
|
|
86724
|
-
export declare interface ValidateLLMEndpointRequest {
|
|
86725
|
-
/**
|
|
86726
|
-
* Provider for the LLM endpoint validation
|
|
86727
|
-
* @type {string}
|
|
86728
|
-
* @memberof ValidateLLMEndpointRequest
|
|
86729
|
-
*/
|
|
86730
|
-
provider: string;
|
|
86731
|
-
/**
|
|
86732
|
-
* Base URL for the LLM endpoint validation
|
|
86733
|
-
* @type {string}
|
|
86734
|
-
* @memberof ValidateLLMEndpointRequest
|
|
86735
|
-
*/
|
|
86736
|
-
baseUrl?: string;
|
|
86737
|
-
/**
|
|
86738
|
-
* Token for the LLM endpoint validation
|
|
86739
|
-
* @type {string}
|
|
86740
|
-
* @memberof ValidateLLMEndpointRequest
|
|
86741
|
-
*/
|
|
86742
|
-
token: string;
|
|
86743
|
-
/**
|
|
86744
|
-
* Organization name for the LLM endpoint validation
|
|
86745
|
-
* @type {string}
|
|
86746
|
-
* @memberof ValidateLLMEndpointRequest
|
|
86747
|
-
*/
|
|
86748
|
-
llmOrganization?: string;
|
|
86749
|
-
/**
|
|
86750
|
-
* LLM model for the LLM endpoint validation
|
|
86751
|
-
* @type {string}
|
|
86752
|
-
* @memberof ValidateLLMEndpointRequest
|
|
86753
|
-
*/
|
|
86754
|
-
llmModel?: string;
|
|
86755
|
-
}
|
|
86756
|
-
|
|
86757
|
-
/**
|
|
86758
|
-
*
|
|
86759
|
-
* @export
|
|
86760
|
-
* @interface ValidateLLMEndpointResponse
|
|
86761
|
-
*/
|
|
86762
|
-
export declare interface ValidateLLMEndpointResponse {
|
|
86763
|
-
/**
|
|
86764
|
-
* Whether the LLM endpoint validation was successful
|
|
86765
|
-
* @type {boolean}
|
|
86766
|
-
* @memberof ValidateLLMEndpointResponse
|
|
86767
|
-
*/
|
|
86768
|
-
success: boolean;
|
|
86769
|
-
/**
|
|
86770
|
-
* Additional message about the LLM endpoint validation
|
|
86771
|
-
* @type {string}
|
|
86772
|
-
* @memberof ValidateLLMEndpointResponse
|
|
86773
|
-
*/
|
|
86774
|
-
message: string;
|
|
86775
|
-
}
|
|
86776
|
-
|
|
86777
86339
|
export declare const ValidateRelationsHeader: {
|
|
86778
86340
|
"X-GDC-VALIDATE-RELATIONS": string;
|
|
86779
86341
|
};
|