@harnessio/react-chaos-manager-client 1.0.0 → 1.1.0

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.
@@ -333,7 +333,7 @@ export type { ChaosfaulttemplateGetFaultTemplateResponse } from './schemas/Chaos
333
333
  export type { ChaosfaulttemplateListActionTemplateResponse } from './schemas/ChaosfaulttemplateListActionTemplateResponse';
334
334
  export type { ChaosfaulttemplateListFaultTemplateResponse } from './schemas/ChaosfaulttemplateListFaultTemplateResponse';
335
335
  export type { ChaosfaulttemplateUpdateFaultTemplateResponse } from './schemas/ChaosfaulttemplateUpdateFaultTemplateResponse';
336
- export type { ChaoshubFaultCategoryCount } from './schemas/ChaoshubFaultCategoryCount';
336
+ export type { ChaoshubFaultCategoriesCount } from './schemas/ChaoshubFaultCategoriesCount';
337
337
  export type { ChaoshubListFaultsResponse } from './schemas/ChaoshubListFaultsResponse';
338
338
  export type { ChaoshubresourcesChaosHubResource } from './schemas/ChaoshubresourcesChaosHubResource';
339
339
  export type { Chaoshubv2ChaosHubResponse } from './schemas/Chaoshubv2ChaosHubResponse';
@@ -0,0 +1,15 @@
1
+ export interface ChaoshubFaultCategoriesCount {
2
+ AWS?: number;
3
+ Azure?: number;
4
+ BYOC?: number;
5
+ 'Cloud Foundry'?: number;
6
+ GCP?: number;
7
+ 'Kube Resilience'?: number;
8
+ Kubernetes?: number;
9
+ Linux?: number;
10
+ Load?: number;
11
+ SSH?: number;
12
+ 'Spring Boot'?: number;
13
+ VMWare?: number;
14
+ Windows?: number;
15
+ }
@@ -1,8 +1,8 @@
1
- import type { ChaoshubFaultCategoryCount } from '../schemas/ChaoshubFaultCategoryCount';
2
1
  import type { ChaoshubresourcesChaosHubResource } from '../schemas/ChaoshubresourcesChaosHubResource';
2
+ import type { ChaoshubFaultCategoriesCount } from '../schemas/ChaoshubFaultCategoriesCount';
3
3
  import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
4
4
  export interface ChaoshubListFaultsResponse {
5
- categoryCount?: ChaoshubFaultCategoryCount[];
6
5
  data?: ChaoshubresourcesChaosHubResource[];
6
+ faultCategoriesCount?: ChaoshubFaultCategoriesCount;
7
7
  pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",
@@ -1,4 +0,0 @@
1
- export interface ChaoshubFaultCategoryCount {
2
- category?: string;
3
- count?: number;
4
- }