@harnessio/react-chaos-manager-client 1.23.2 → 1.24.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/hooks/useListFaultTemplateQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/index.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.d.ts +15 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListFaultTemplateResponse.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubresourcesPermissionLevel.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +1 -0
- package/package.json +1 -1
|
@@ -428,6 +428,7 @@ export type { ChaosfaulttemplateChaosFaultTemplate } from './schemas/Chaosfaultt
|
|
|
428
428
|
export type { ChaosfaulttemplateCompareRevisions } from './schemas/ChaosfaulttemplateCompareRevisions';
|
|
429
429
|
export type { ChaosfaulttemplateCreateFaultTemplateRequest } from './schemas/ChaosfaulttemplateCreateFaultTemplateRequest';
|
|
430
430
|
export type { ChaosfaulttemplateCreateFaultTemplateResponse } from './schemas/ChaosfaulttemplateCreateFaultTemplateResponse';
|
|
431
|
+
export type { ChaosfaulttemplateFaultTemplateCategoriesCount } from './schemas/ChaosfaulttemplateFaultTemplateCategoriesCount';
|
|
431
432
|
export type { ChaosfaulttemplateFaultTemplateVariables } from './schemas/ChaosfaulttemplateFaultTemplateVariables';
|
|
432
433
|
export type { ChaosfaulttemplateFaultTemplateYaml } from './schemas/ChaosfaulttemplateFaultTemplateYaml';
|
|
433
434
|
export type { ChaosfaulttemplateGetActionTemplateResponse } from './schemas/ChaosfaulttemplateGetActionTemplateResponse';
|
package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ChaosfaulttemplateFaultTemplateCategoriesCount {
|
|
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
|
+
}
|
package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListFaultTemplateResponse.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { ChaosfaulttemplateFaultTemplateCategoriesCount } from '../schemas/ChaosfaulttemplateFaultTemplateCategoriesCount';
|
|
1
2
|
import type { ChaosfaulttemplateChaosFaultTemplate } from '../schemas/ChaosfaulttemplateChaosFaultTemplate';
|
|
2
3
|
import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
|
|
3
4
|
export interface ChaosfaulttemplateListFaultTemplateResponse {
|
|
5
|
+
categoriesCount?: ChaosfaulttemplateFaultTemplateCategoriesCount;
|
|
4
6
|
correlationID?: string;
|
|
5
7
|
data?: ChaosfaulttemplateChaosFaultTemplate[];
|
|
6
8
|
pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ChaoshubresourcesPermissionLevel = '
|
|
1
|
+
export type ChaoshubresourcesPermissionLevel = 'Advanced' | 'Basic';
|
package/package.json
CHANGED