@harnessio/react-chaos-manager-client 1.16.0 → 1.17.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 -0
- package/dist/chaos-manager/src/services/schemas/ActionCustomScriptActionTemplate.d.ts +2 -1
- package/dist/chaos-manager/src/services/schemas/ActionCustomScriptActionTemplate.js +0 -3
- package/dist/chaos-manager/src/services/schemas/ActionEnv.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/ActionEnv.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ActionSourceActionTemplate.d.ts +2 -1
- package/dist/chaos-manager/src/services/schemas/ActionSourceActionTemplate.js +0 -3
- package/package.json +1 -1
|
@@ -291,6 +291,7 @@ export type { ActionActionTemplateProperties } from './schemas/ActionActionTempl
|
|
|
291
291
|
export type { ActionActionTemplateRunProperties } from './schemas/ActionActionTemplateRunProperties';
|
|
292
292
|
export type { ActionCustomScriptActionTemplate } from './schemas/ActionCustomScriptActionTemplate';
|
|
293
293
|
export type { ActionDelayActionTemplate } from './schemas/ActionDelayActionTemplate';
|
|
294
|
+
export type { ActionEnv } from './schemas/ActionEnv';
|
|
294
295
|
export type { ActionSourceActionTemplate } from './schemas/ActionSourceActionTemplate';
|
|
295
296
|
export type { ActionsActionResponse } from './schemas/ActionsActionResponse';
|
|
296
297
|
export type { ActionsActionType } from './schemas/ActionsActionType';
|
package/package.json
CHANGED