@harnessio/react-idp-service-client 0.96.1 → 0.96.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/idp-service/src/services/index.d.ts +1 -0
- package/dist/idp-service/src/services/schemas/AggregationRule.d.ts +2 -0
- package/dist/idp-service/src/services/schemas/AggregationRuleDetails.d.ts +2 -0
- package/dist/idp-service/src/services/schemas/AggregationType.d.ts +2 -0
- package/dist/idp-service/src/services/schemas/AggregationType.js +4 -0
- package/dist/idp-service/src/services/schemas/SaveDiscoverEntitiesRequest.d.ts +1 -0
- package/package.json +1 -1
|
@@ -389,6 +389,7 @@ export type { AggregationRuleResponse } from './schemas/AggregationRuleResponse'
|
|
|
389
389
|
export type { AggregationScopeLevel } from './schemas/AggregationScopeLevel';
|
|
390
390
|
export type { AggregationSelectionReviewRequest } from './schemas/AggregationSelectionReviewRequest';
|
|
391
391
|
export type { AggregationSelectionReviewResponse } from './schemas/AggregationSelectionReviewResponse';
|
|
392
|
+
export type { AggregationType } from './schemas/AggregationType';
|
|
392
393
|
export type { AllowListRequest } from './schemas/AllowListRequest';
|
|
393
394
|
export type { AllowListResponse } from './schemas/AllowListResponse';
|
|
394
395
|
export type { AppConfig } from './schemas/AppConfig';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { AggFormula } from '../schemas/AggFormula';
|
|
2
|
+
import type { AggregationType } from '../schemas/AggregationType';
|
|
2
3
|
import type { AggregationComputeStatus } from '../schemas/AggregationComputeStatus';
|
|
3
4
|
import type { AggregationScopeLevel } from '../schemas/AggregationScopeLevel';
|
|
4
5
|
export interface AggregationRule {
|
|
5
6
|
agg_formula: AggFormula;
|
|
7
|
+
aggregation_type: AggregationType;
|
|
6
8
|
description?: string;
|
|
7
9
|
field_for_agg: string;
|
|
8
10
|
identifier: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import type { AggFormula } from '../schemas/AggFormula';
|
|
2
|
+
import type { AggregationType } from '../schemas/AggregationType';
|
|
2
3
|
import type { AggregationEntitySelectionCriteria } from '../schemas/AggregationEntitySelectionCriteria';
|
|
3
4
|
import type { AggregationComputeStatus } from '../schemas/AggregationComputeStatus';
|
|
4
5
|
import type { AggregationScopeLevel } from '../schemas/AggregationScopeLevel';
|
|
5
6
|
export interface AggregationRuleDetails {
|
|
6
7
|
agg_formula: AggFormula;
|
|
8
|
+
aggregation_type: AggregationType;
|
|
7
9
|
description?: string;
|
|
8
10
|
entity_selection_criteria?: AggregationEntitySelectionCriteria;
|
|
9
11
|
/**
|