@harnessio/react-chaos-manager-client 1.33.0 → 1.33.1
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/useGetExperimentTemplateRevisionsQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/hooks/useListExperimentTemplateQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/hooks/useListFaultTemplateQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest.d.ts +4 -0
- package/package.json +1 -1
|
@@ -3,7 +3,10 @@ export interface ChaosexperimenttemplateCreateExperimentFromTemplateRequest {
|
|
|
3
3
|
* account id to access the resource
|
|
4
4
|
*/
|
|
5
5
|
accountIdentifier: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
identity?: string;
|
|
6
8
|
infraRef?: string;
|
|
9
|
+
name: string;
|
|
7
10
|
/**
|
|
8
11
|
* organization id to access the resource
|
|
9
12
|
*/
|
|
@@ -12,4 +15,5 @@ export interface ChaosexperimenttemplateCreateExperimentFromTemplateRequest {
|
|
|
12
15
|
* project id to access the resource
|
|
13
16
|
*/
|
|
14
17
|
projectIdentifier?: string;
|
|
18
|
+
tags?: string[];
|
|
15
19
|
}
|
package/package.json
CHANGED