@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.
- package/dist/chaos-manager/src/services/index.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaoshubFaultCategoriesCount.d.ts +15 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubListFaultsResponse.d.ts +2 -2
- package/package.json +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaoshubFaultCategoryCount.d.ts +0 -4
- /package/dist/chaos-manager/src/services/schemas/{ChaoshubFaultCategoryCount.js → ChaoshubFaultCategoriesCount.js} +0 -0
|
@@ -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 {
|
|
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
|
File without changes
|