@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.
@@ -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
  /**
@@ -0,0 +1,2 @@
1
+ export interface AggregationType {
2
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -4,6 +4,7 @@ export interface SaveDiscoverEntitiesRequest {
4
4
  integration_entities: Array<{
5
5
  action?: 'MERGE' | 'REGISTER';
6
6
  action_destination?: string;
7
+ action_identifier?: string;
7
8
  integration_entity_id?: string;
8
9
  type?: string;
9
10
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.96.1",
3
+ "version": "0.96.3",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",