@harnessio/react-chaos-manager-client 1.49.1-beta.2 → 1.49.1-beta.3
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/useGetChaosComponentVariableQuery.d.ts +2 -2
- package/dist/chaos-manager/src/services/index.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableData.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableData.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableResponse.js +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ChaoscomponentsGetChaosComponentVariableResponse } from '../schemas/ChaoscomponentsGetChaosComponentVariableResponse';
|
|
3
3
|
import type { ApiRestError } from '../schemas/ApiRestError';
|
|
4
4
|
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
5
5
|
export interface GetChaosComponentVariableQueryQueryParams {
|
|
@@ -11,7 +11,7 @@ export interface GetChaosComponentVariableQueryQueryParams {
|
|
|
11
11
|
projectIdentifier?: string;
|
|
12
12
|
type?: 'Action' | 'Fault' | 'Probe';
|
|
13
13
|
}
|
|
14
|
-
export type GetChaosComponentVariableOkResponse =
|
|
14
|
+
export type GetChaosComponentVariableOkResponse = ChaoscomponentsGetChaosComponentVariableResponse;
|
|
15
15
|
export type GetChaosComponentVariableErrorResponse = ApiRestError;
|
|
16
16
|
export interface GetChaosComponentVariableProps extends Omit<FetcherOptions<GetChaosComponentVariableQueryQueryParams, unknown>, 'url'> {
|
|
17
17
|
queryParams: GetChaosComponentVariableQueryQueryParams;
|
|
@@ -524,6 +524,8 @@ export type { ChaoscomponentsDrTest } from './schemas/ChaoscomponentsDrTest';
|
|
|
524
524
|
export type { ChaoscomponentsDrTestPipelineInfo } from './schemas/ChaoscomponentsDrTestPipelineInfo';
|
|
525
525
|
export type { ChaoscomponentsDrTestRunInfo } from './schemas/ChaoscomponentsDrTestRunInfo';
|
|
526
526
|
export type { ChaoscomponentsDrTestSpec } from './schemas/ChaoscomponentsDrTestSpec';
|
|
527
|
+
export type { ChaoscomponentsGetChaosComponentVariableData } from './schemas/ChaoscomponentsGetChaosComponentVariableData';
|
|
528
|
+
export type { ChaoscomponentsGetChaosComponentVariableResponse } from './schemas/ChaoscomponentsGetChaosComponentVariableResponse';
|
|
527
529
|
export type { ChaoscomponentsListDrTestsResponse } from './schemas/ChaoscomponentsListDrTestsResponse';
|
|
528
530
|
export type { ChaoscomponentsRunChaosComponentRequest } from './schemas/ChaoscomponentsRunChaosComponentRequest';
|
|
529
531
|
export type { ChaoscomponentsRunChaosComponentResponse } from './schemas/ChaoscomponentsRunChaosComponentResponse';
|
package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableData.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/chaos-manager/src/services/schemas/ChaoscomponentsGetChaosComponentVariableResponse.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED