@harnessio/react-chaos-manager-client 1.44.0 → 1.45.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/useGetExperimentOrTemplateVariableQuery.d.ts +2 -2
- package/dist/chaos-manager/src/services/index.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/V3GetExperimentOrTemplateVariableData.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/V3GetExperimentOrTemplateVariableData.js +1 -0
- package/dist/chaos-manager/src/services/schemas/V3GetExperimentOrTemplateVariableResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/V3GetExperimentOrTemplateVariableResponse.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 { V3GetExperimentOrTemplateVariableResponse } from '../schemas/V3GetExperimentOrTemplateVariableResponse';
|
|
3
3
|
import type { ApiRestError } from '../schemas/ApiRestError';
|
|
4
4
|
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
5
5
|
export interface GetExperimentOrTemplateVariableQueryQueryParams {
|
|
@@ -12,7 +12,7 @@ export interface GetExperimentOrTemplateVariableQueryQueryParams {
|
|
|
12
12
|
organizationIdentifier?: string;
|
|
13
13
|
projectIdentifier?: string;
|
|
14
14
|
}
|
|
15
|
-
export type GetExperimentOrTemplateVariableOkResponse =
|
|
15
|
+
export type GetExperimentOrTemplateVariableOkResponse = V3GetExperimentOrTemplateVariableResponse;
|
|
16
16
|
export type GetExperimentOrTemplateVariableErrorResponse = ApiRestError;
|
|
17
17
|
export interface GetExperimentOrTemplateVariableProps extends Omit<FetcherOptions<GetExperimentOrTemplateVariableQueryQueryParams, unknown>, 'url'> {
|
|
18
18
|
queryParams: GetExperimentOrTemplateVariableQueryQueryParams;
|
|
@@ -1205,4 +1205,6 @@ export type { V2OnboardingV2Onboarding } from './schemas/V2OnboardingV2Onboardin
|
|
|
1205
1205
|
export type { V2OnboardingV2OnboardingList } from './schemas/V2OnboardingV2OnboardingList';
|
|
1206
1206
|
export type { V2OnboardingV2OnboardingRequest } from './schemas/V2OnboardingV2OnboardingRequest';
|
|
1207
1207
|
export type { V2OnboardingV2OnboardingStatus } from './schemas/V2OnboardingV2OnboardingStatus';
|
|
1208
|
+
export type { V3GetExperimentOrTemplateVariableData } from './schemas/V3GetExperimentOrTemplateVariableData';
|
|
1209
|
+
export type { V3GetExperimentOrTemplateVariableResponse } from './schemas/V3GetExperimentOrTemplateVariableResponse';
|
|
1208
1210
|
export type { V3ListExperimentOrTemplateResponse } from './schemas/V3ListExperimentOrTemplateResponse';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED