@harnessio/react-chaos-manager-client 1.62.0 → 1.62.1-beta.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/useGetCommandUnitStatusesQuery.d.ts +2 -0
- package/dist/chaos-manager/src/services/index.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInput.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputMinimum.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputMinimum.js +0 -3
- package/dist/chaos-manager/src/services/schemas/TemplateInputReference.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputReference.js +1 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputReferenceKind.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputReferenceKind.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputReferenceType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/TemplateInputReferenceType.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4,6 +4,8 @@ import type { ApiRestError } from '../schemas/ApiRestError';
|
|
|
4
4
|
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
5
5
|
export interface GetCommandUnitStatusesQueryQueryParams {
|
|
6
6
|
accountIdentifier: string;
|
|
7
|
+
orgIdentifier?: string;
|
|
8
|
+
projectIdentifier?: string;
|
|
7
9
|
uid: string;
|
|
8
10
|
}
|
|
9
11
|
export type GetCommandUnitStatusesOkResponse = LogserviceCommandUnitStatusResponse;
|
|
@@ -1150,6 +1150,9 @@ export type { TemplateChaosExperimentInputsetSpec } from './schemas/TemplateChao
|
|
|
1150
1150
|
export type { TemplateInput } from './schemas/TemplateInput';
|
|
1151
1151
|
export type { TemplateInputCategory } from './schemas/TemplateInputCategory';
|
|
1152
1152
|
export type { TemplateInputMinimum } from './schemas/TemplateInputMinimum';
|
|
1153
|
+
export type { TemplateInputReference } from './schemas/TemplateInputReference';
|
|
1154
|
+
export type { TemplateInputReferenceKind } from './schemas/TemplateInputReferenceKind';
|
|
1155
|
+
export type { TemplateInputReferenceType } from './schemas/TemplateInputReferenceType';
|
|
1153
1156
|
export type { TemplateInputType } from './schemas/TemplateInputType';
|
|
1154
1157
|
export type { TemplateRunTimeInputs } from './schemas/TemplateRunTimeInputs';
|
|
1155
1158
|
export type { TemplateVariable } from './schemas/TemplateVariable';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { TemplateInputCategory } from '../schemas/TemplateInputCategory';
|
|
2
|
+
import type { TemplateInputReference } from '../schemas/TemplateInputReference';
|
|
2
3
|
import type { TemplateInputType } from '../schemas/TemplateInputType';
|
|
3
4
|
export interface TemplateInput {
|
|
4
5
|
allowedValues?: Array<{}>;
|
|
@@ -7,6 +8,7 @@ export interface TemplateInput {
|
|
|
7
8
|
description?: string;
|
|
8
9
|
name: string;
|
|
9
10
|
path?: string;
|
|
11
|
+
reference?: TemplateInputReference;
|
|
10
12
|
required?: boolean;
|
|
11
13
|
stringify?: boolean;
|
|
12
14
|
tags?: string[];
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
import type { TemplateInputCategory } from '../schemas/TemplateInputCategory';
|
|
2
|
+
import type { TemplateInputReference } from '../schemas/TemplateInputReference';
|
|
1
3
|
export interface TemplateInputMinimum {
|
|
4
|
+
category?: TemplateInputCategory;
|
|
2
5
|
name: string;
|
|
6
|
+
reference?: TemplateInputReference;
|
|
3
7
|
value: {};
|
|
4
8
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { TemplateInputReferenceKind } from '../schemas/TemplateInputReferenceKind';
|
|
2
|
+
import type { TemplateInputReferenceType } from '../schemas/TemplateInputReferenceType';
|
|
3
|
+
export interface TemplateInputReference {
|
|
4
|
+
kind?: TemplateInputReferenceKind;
|
|
5
|
+
type?: TemplateInputReferenceType;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TemplateInputReferenceKind = 'ChaosInfrastructure' | 'Connector' | 'Secret';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TemplateInputReferenceType = 'AppDynamics' | 'Datadog' | 'Dynatrace' | 'KubernetesV2' | 'Linux' | 'NewRelic' | 'Prometheus' | 'SecretFile' | 'SecretText' | 'SignalFX' | 'Splunk' | 'Windows';
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
import type { TemplateInputCategory } from '../schemas/TemplateInputCategory';
|
|
2
|
+
import type { TemplateInputReference } from '../schemas/TemplateInputReference';
|
|
1
3
|
import type { TemplateVariableType } from '../schemas/TemplateVariableType';
|
|
2
4
|
export interface TemplateVariable {
|
|
5
|
+
category?: TemplateInputCategory;
|
|
3
6
|
description?: string;
|
|
4
7
|
name: string;
|
|
5
8
|
path?: string;
|
|
9
|
+
reference?: TemplateInputReference;
|
|
6
10
|
required?: boolean;
|
|
7
11
|
type?: TemplateVariableType;
|
|
8
12
|
value: {};
|
package/package.json
CHANGED