@harnessio/react-idp-service-client 0.97.0 → 0.98.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.
|
@@ -3,13 +3,18 @@ import type { EnvironmentBlueprintInfoResponseResponse } from '../responses/Envi
|
|
|
3
3
|
import type { EnvironmentBlueprintInfoRequestRequestBody } from '../requestBodies/EnvironmentBlueprintInfoRequestRequestBody';
|
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
5
|
import { FetcherOptions } from '../../../../custom-idp-fetcher/index.js';
|
|
6
|
+
export interface GetEnvironmentBlueprintInfoMutationQueryParams {
|
|
7
|
+
orgIdentifier?: string;
|
|
8
|
+
projectIdentifier?: string;
|
|
9
|
+
}
|
|
6
10
|
export interface GetEnvironmentBlueprintInfoMutationHeaderParams {
|
|
7
11
|
'Harness-Account'?: string;
|
|
8
12
|
}
|
|
9
13
|
export type GetEnvironmentBlueprintInfoRequestBody = EnvironmentBlueprintInfoRequestRequestBody;
|
|
10
14
|
export type GetEnvironmentBlueprintInfoOkResponse = ResponseWithPagination<EnvironmentBlueprintInfoResponseResponse>;
|
|
11
15
|
export type GetEnvironmentBlueprintInfoErrorResponse = unknown;
|
|
12
|
-
export interface GetEnvironmentBlueprintInfoProps extends Omit<FetcherOptions<
|
|
16
|
+
export interface GetEnvironmentBlueprintInfoProps extends Omit<FetcherOptions<GetEnvironmentBlueprintInfoMutationQueryParams, GetEnvironmentBlueprintInfoRequestBody, GetEnvironmentBlueprintInfoMutationHeaderParams>, 'url'> {
|
|
17
|
+
queryParams: GetEnvironmentBlueprintInfoMutationQueryParams;
|
|
13
18
|
body: GetEnvironmentBlueprintInfoRequestBody;
|
|
14
19
|
}
|
|
15
20
|
export declare function getEnvironmentBlueprintInfo(props: GetEnvironmentBlueprintInfoProps): Promise<GetEnvironmentBlueprintInfoOkResponse>;
|
|
@@ -139,7 +139,7 @@ export type { GetEntityVersionErrorResponse, GetEntityVersionOkResponse, GetEnti
|
|
|
139
139
|
export { getEntityVersion, useGetEntityVersionQuery } from './hooks/useGetEntityVersionQuery';
|
|
140
140
|
export type { GetEntityVersionsErrorResponse, GetEntityVersionsOkResponse, GetEntityVersionsProps, GetEntityVersionsQueryPathParams, GetEntityVersionsQueryQueryParams, } from './hooks/useGetEntityVersionsQuery';
|
|
141
141
|
export { getEntityVersions, useGetEntityVersionsQuery } from './hooks/useGetEntityVersionsQuery';
|
|
142
|
-
export type { GetEnvironmentBlueprintInfoErrorResponse, GetEnvironmentBlueprintInfoOkResponse, GetEnvironmentBlueprintInfoProps, GetEnvironmentBlueprintInfoRequestBody, } from './hooks/useGetEnvironmentBlueprintInfoMutation';
|
|
142
|
+
export type { GetEnvironmentBlueprintInfoErrorResponse, GetEnvironmentBlueprintInfoMutationQueryParams, GetEnvironmentBlueprintInfoOkResponse, GetEnvironmentBlueprintInfoProps, GetEnvironmentBlueprintInfoRequestBody, } from './hooks/useGetEnvironmentBlueprintInfoMutation';
|
|
143
143
|
export { getEnvironmentBlueprintInfo, useGetEnvironmentBlueprintInfoMutation, } from './hooks/useGetEnvironmentBlueprintInfoMutation';
|
|
144
144
|
export type { GetGroupDetailsErrorResponse, GetGroupDetailsOkResponse, GetGroupDetailsProps, GetGroupDetailsQueryPathParams, GetGroupDetailsQueryQueryParams, } from './hooks/useGetGroupDetailsQuery';
|
|
145
145
|
export { getGroupDetails, useGetGroupDetailsQuery } from './hooks/useGetGroupDetailsQuery';
|