@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.
@@ -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';
@@ -1,5 +1,6 @@
1
+ import type { ActionEnv } from '../schemas/ActionEnv';
1
2
  export interface ActionCustomScriptActionTemplate {
2
3
  args?: string[];
3
4
  command?: string;
4
- env?: {};
5
+ env?: ActionEnv[];
5
6
  }
@@ -1,4 +1 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
@@ -0,0 +1,4 @@
1
+ export interface ActionEnv {
2
+ name?: string;
3
+ value?: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,7 +1,8 @@
1
+ import type { ActionEnv } from '../schemas/ActionEnv';
1
2
  export interface ActionSourceActionTemplate {
2
3
  args?: {};
3
4
  command?: {};
4
- env?: {};
5
+ env?: ActionEnv[];
5
6
  image?: string;
6
7
  imagePullPolicy?: string;
7
8
  imagePullSecrets?: {};
@@ -1,4 +1 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",