@harnessio/react-idp-service-client 0.48.4 → 0.49.1
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/idp-service/src/services/hooks/useCreateIntegrationMutation.d.ts +27 -0
- package/dist/idp-service/src/services/hooks/useCreateIntegrationMutation.js +14 -0
- package/dist/idp-service/src/services/hooks/useGetIntegrationQuery.d.ts +20 -0
- package/dist/idp-service/src/services/hooks/useGetIntegrationQuery.js +14 -0
- package/dist/idp-service/src/services/hooks/useGetIntegrationsQuery.d.ts +26 -0
- package/dist/idp-service/src/services/hooks/useGetIntegrationsQuery.js +14 -0
- package/dist/idp-service/src/services/hooks/useUpdateIntegrationMutation.d.ts +27 -0
- package/dist/idp-service/src/services/hooks/useUpdateIntegrationMutation.js +14 -0
- package/dist/idp-service/src/services/index.d.ts +13 -0
- package/dist/idp-service/src/services/index.js +4 -0
- package/dist/idp-service/src/services/requestBodies/IntegrationRequestRequestBody.d.ts +2 -0
- package/dist/idp-service/src/services/requestBodies/IntegrationRequestRequestBody.js +1 -0
- package/dist/idp-service/src/services/responses/IntegrationResponseListResponse.d.ts +2 -0
- package/dist/idp-service/src/services/responses/IntegrationResponseListResponse.js +1 -0
- package/dist/idp-service/src/services/responses/IntegrationResponseResponse.d.ts +2 -0
- package/dist/idp-service/src/services/responses/IntegrationResponseResponse.js +1 -0
- package/dist/idp-service/src/services/schemas/BaseIntegrationRequest.d.ts +6 -0
- package/dist/idp-service/src/services/schemas/BaseIntegrationRequest.js +4 -0
- package/dist/idp-service/src/services/schemas/IntegrationResponse.d.ts +3 -0
- package/dist/idp-service/src/services/schemas/IntegrationResponse.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationResponseResponse } from '../responses/IntegrationResponseResponse';
|
|
3
|
+
import type { IntegrationRequestRequestBody } from '../requestBodies/IntegrationRequestRequestBody';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface CreateIntegrationMutationPathParams {
|
|
7
|
+
integration: 'git';
|
|
8
|
+
}
|
|
9
|
+
export interface CreateIntegrationMutationQueryParams {
|
|
10
|
+
dry_run?: boolean;
|
|
11
|
+
write_validation?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface CreateIntegrationMutationHeaderParams {
|
|
14
|
+
'Harness-Account'?: string;
|
|
15
|
+
}
|
|
16
|
+
export type CreateIntegrationRequestBody = IntegrationRequestRequestBody;
|
|
17
|
+
export type CreateIntegrationOkResponse = ResponseWithPagination<IntegrationResponseResponse>;
|
|
18
|
+
export type CreateIntegrationErrorResponse = unknown;
|
|
19
|
+
export interface CreateIntegrationProps extends CreateIntegrationMutationPathParams, Omit<FetcherOptions<CreateIntegrationMutationQueryParams, CreateIntegrationRequestBody, CreateIntegrationMutationHeaderParams>, 'url'> {
|
|
20
|
+
queryParams: CreateIntegrationMutationQueryParams;
|
|
21
|
+
body: CreateIntegrationRequestBody;
|
|
22
|
+
}
|
|
23
|
+
export declare function createIntegration(props: CreateIntegrationProps): Promise<CreateIntegrationOkResponse>;
|
|
24
|
+
/**
|
|
25
|
+
* Create integration
|
|
26
|
+
*/
|
|
27
|
+
export declare function useCreateIntegrationMutation(options?: Omit<UseMutationOptions<CreateIntegrationOkResponse, CreateIntegrationErrorResponse, CreateIntegrationProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CreateIntegrationOkResponse, unknown, CreateIntegrationProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function createIntegration(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/integrations/${props.integration}`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Create integration
|
|
11
|
+
*/
|
|
12
|
+
export function useCreateIntegrationMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => createIntegration(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationResponseResponse } from '../responses/IntegrationResponseResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface GetIntegrationQueryPathParams {
|
|
6
|
+
integration: 'git';
|
|
7
|
+
'integration-id': string;
|
|
8
|
+
}
|
|
9
|
+
export interface GetIntegrationQueryHeaderParams {
|
|
10
|
+
'Harness-Account'?: string;
|
|
11
|
+
}
|
|
12
|
+
export type GetIntegrationOkResponse = ResponseWithPagination<IntegrationResponseResponse>;
|
|
13
|
+
export type GetIntegrationErrorResponse = unknown;
|
|
14
|
+
export interface GetIntegrationProps extends GetIntegrationQueryPathParams, Omit<FetcherOptions<unknown, unknown, GetIntegrationQueryHeaderParams>, 'url'> {
|
|
15
|
+
}
|
|
16
|
+
export declare function getIntegration(props: GetIntegrationProps): Promise<GetIntegrationOkResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Get integration details for given integrationId
|
|
19
|
+
*/
|
|
20
|
+
export declare function useGetIntegrationQuery(props: GetIntegrationProps, options?: Omit<UseQueryOptions<GetIntegrationOkResponse, GetIntegrationErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetIntegrationOkResponse, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getIntegration(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/integrations/${props.integration}/${props['integration-id']}`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get integration details for given integrationId
|
|
11
|
+
*/
|
|
12
|
+
export function useGetIntegrationQuery(props, options) {
|
|
13
|
+
return useQuery(['get-integration', props.integration, props['integration-id']], ({ signal }) => getIntegration(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationResponseListResponse } from '../responses/IntegrationResponseListResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface GetIntegrationsQueryPathParams {
|
|
6
|
+
integration: 'git';
|
|
7
|
+
}
|
|
8
|
+
export interface GetIntegrationsQueryQueryParams {
|
|
9
|
+
page?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
sort?: string;
|
|
12
|
+
search_term?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface GetIntegrationsQueryHeaderParams {
|
|
15
|
+
'Harness-Account'?: string;
|
|
16
|
+
}
|
|
17
|
+
export type GetIntegrationsOkResponse = ResponseWithPagination<IntegrationResponseListResponse>;
|
|
18
|
+
export type GetIntegrationsErrorResponse = unknown;
|
|
19
|
+
export interface GetIntegrationsProps extends GetIntegrationsQueryPathParams, Omit<FetcherOptions<GetIntegrationsQueryQueryParams, unknown, GetIntegrationsQueryHeaderParams>, 'url'> {
|
|
20
|
+
queryParams: GetIntegrationsQueryQueryParams;
|
|
21
|
+
}
|
|
22
|
+
export declare function getIntegrations(props: GetIntegrationsProps): Promise<GetIntegrationsOkResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* Get all integrations available
|
|
25
|
+
*/
|
|
26
|
+
export declare function useGetIntegrationsQuery(props: GetIntegrationsProps, options?: Omit<UseQueryOptions<GetIntegrationsOkResponse, GetIntegrationsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetIntegrationsOkResponse, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getIntegrations(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/integrations/${props.integration}`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get all integrations available
|
|
11
|
+
*/
|
|
12
|
+
export function useGetIntegrationsQuery(props, options) {
|
|
13
|
+
return useQuery(['get-integrations', props.integration, props.queryParams], ({ signal }) => getIntegrations(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationResponseResponse } from '../responses/IntegrationResponseResponse';
|
|
3
|
+
import type { IntegrationRequestRequestBody } from '../requestBodies/IntegrationRequestRequestBody';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface UpdateIntegrationMutationPathParams {
|
|
7
|
+
integration: 'git';
|
|
8
|
+
'integration-id': string;
|
|
9
|
+
}
|
|
10
|
+
export interface UpdateIntegrationMutationQueryParams {
|
|
11
|
+
dry_run?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface UpdateIntegrationMutationHeaderParams {
|
|
14
|
+
'Harness-Account'?: string;
|
|
15
|
+
}
|
|
16
|
+
export type UpdateIntegrationRequestBody = IntegrationRequestRequestBody;
|
|
17
|
+
export type UpdateIntegrationOkResponse = ResponseWithPagination<IntegrationResponseResponse>;
|
|
18
|
+
export type UpdateIntegrationErrorResponse = unknown;
|
|
19
|
+
export interface UpdateIntegrationProps extends UpdateIntegrationMutationPathParams, Omit<FetcherOptions<UpdateIntegrationMutationQueryParams, UpdateIntegrationRequestBody, UpdateIntegrationMutationHeaderParams>, 'url'> {
|
|
20
|
+
queryParams: UpdateIntegrationMutationQueryParams;
|
|
21
|
+
body: UpdateIntegrationRequestBody;
|
|
22
|
+
}
|
|
23
|
+
export declare function updateIntegration(props: UpdateIntegrationProps): Promise<UpdateIntegrationOkResponse>;
|
|
24
|
+
/**
|
|
25
|
+
* Update integration details for given integrationId
|
|
26
|
+
*/
|
|
27
|
+
export declare function useUpdateIntegrationMutation(options?: Omit<UseMutationOptions<UpdateIntegrationOkResponse, UpdateIntegrationErrorResponse, UpdateIntegrationProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<UpdateIntegrationOkResponse, unknown, UpdateIntegrationProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function updateIntegration(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/integrations/${props.integration}/${props['integration-id']}`, method: 'PUT' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update integration details for given integrationId
|
|
11
|
+
*/
|
|
12
|
+
export function useUpdateIntegrationMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => updateIntegration(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -5,6 +5,8 @@ export type { CreateBackstagePermissionsErrorResponse, CreateBackstagePermission
|
|
|
5
5
|
export { createBackstagePermissions, useCreateBackstagePermissionsMutation, } from './hooks/useCreateBackstagePermissionsMutation';
|
|
6
6
|
export type { CreateCheckErrorResponse, CreateCheckOkResponse, CreateCheckProps, CreateCheckRequestBody, } from './hooks/useCreateCheckMutation';
|
|
7
7
|
export { createCheck, useCreateCheckMutation } from './hooks/useCreateCheckMutation';
|
|
8
|
+
export type { CreateIntegrationErrorResponse, CreateIntegrationMutationPathParams, CreateIntegrationMutationQueryParams, CreateIntegrationOkResponse, CreateIntegrationProps, CreateIntegrationRequestBody, } from './hooks/useCreateIntegrationMutation';
|
|
9
|
+
export { createIntegration, useCreateIntegrationMutation, } from './hooks/useCreateIntegrationMutation';
|
|
8
10
|
export type { CreateLayoutErrorResponse, CreateLayoutOkResponse, CreateLayoutProps, CreateLayoutRequestBody, } from './hooks/useCreateLayoutMutation';
|
|
9
11
|
export { createLayout, useCreateLayoutMutation } from './hooks/useCreateLayoutMutation';
|
|
10
12
|
export type { CreateScorecardErrorResponse, CreateScorecardOkResponse, CreateScorecardProps, CreateScorecardRequestBody, } from './hooks/useCreateScorecardMutation';
|
|
@@ -45,6 +47,10 @@ export type { GetHarnessEntitiesCountErrorResponse, GetHarnessEntitiesCountOkRes
|
|
|
45
47
|
export { getHarnessEntitiesCount, useGetHarnessEntitiesCountQuery, } from './hooks/useGetHarnessEntitiesCountQuery';
|
|
46
48
|
export type { GetHarnessEntitiesErrorResponse, GetHarnessEntitiesOkResponse, GetHarnessEntitiesProps, GetHarnessEntitiesQueryQueryParams, } from './hooks/useGetHarnessEntitiesQuery';
|
|
47
49
|
export { getHarnessEntities, useGetHarnessEntitiesQuery } from './hooks/useGetHarnessEntitiesQuery';
|
|
50
|
+
export type { GetIntegrationErrorResponse, GetIntegrationOkResponse, GetIntegrationProps, GetIntegrationQueryPathParams, } from './hooks/useGetIntegrationQuery';
|
|
51
|
+
export { getIntegration, useGetIntegrationQuery } from './hooks/useGetIntegrationQuery';
|
|
52
|
+
export type { GetIntegrationsErrorResponse, GetIntegrationsOkResponse, GetIntegrationsProps, GetIntegrationsQueryPathParams, GetIntegrationsQueryQueryParams, } from './hooks/useGetIntegrationsQuery';
|
|
53
|
+
export { getIntegrations, useGetIntegrationsQuery } from './hooks/useGetIntegrationsQuery';
|
|
48
54
|
export type { GetLayoutErrorResponse, GetLayoutOkResponse, GetLayoutProps, GetLayoutQueryPathParams, } from './hooks/useGetLayoutQuery';
|
|
49
55
|
export { getLayout, useGetLayoutQuery } from './hooks/useGetLayoutQuery';
|
|
50
56
|
export type { GetMergedPluginsConfigErrorResponse, GetMergedPluginsConfigOkResponse, GetMergedPluginsConfigProps, } from './hooks/useGetMergedPluginsConfigQuery';
|
|
@@ -93,6 +99,8 @@ export type { UpdateConfigurationEntitiesErrorResponse, UpdateConfigurationEntit
|
|
|
93
99
|
export { updateConfigurationEntities, useUpdateConfigurationEntitiesMutation, } from './hooks/useUpdateConfigurationEntitiesMutation';
|
|
94
100
|
export type { UpdateCustomPluginsInfoErrorResponse, UpdateCustomPluginsInfoMutationPathParams, UpdateCustomPluginsInfoOkResponse, UpdateCustomPluginsInfoProps, UpdateCustomPluginsInfoRequestBody, } from './hooks/useUpdateCustomPluginsInfoMutation';
|
|
95
101
|
export { updateCustomPluginsInfo, useUpdateCustomPluginsInfoMutation, } from './hooks/useUpdateCustomPluginsInfoMutation';
|
|
102
|
+
export type { UpdateIntegrationErrorResponse, UpdateIntegrationMutationPathParams, UpdateIntegrationMutationQueryParams, UpdateIntegrationOkResponse, UpdateIntegrationProps, UpdateIntegrationRequestBody, } from './hooks/useUpdateIntegrationMutation';
|
|
103
|
+
export { updateIntegration, useUpdateIntegrationMutation, } from './hooks/useUpdateIntegrationMutation';
|
|
96
104
|
export type { UpdateScorecardErrorResponse, UpdateScorecardMutationPathParams, UpdateScorecardOkResponse, UpdateScorecardProps, UpdateScorecardRequestBody, } from './hooks/useUpdateScorecardMutation';
|
|
97
105
|
export { updateScorecard, useUpdateScorecardMutation } from './hooks/useUpdateScorecardMutation';
|
|
98
106
|
export type { AppConfigRequestRequestBody } from './requestBodies/AppConfigRequestRequestBody';
|
|
@@ -104,6 +112,7 @@ export type { CustomPluginCreateRequestRequestBody } from './requestBodies/Custo
|
|
|
104
112
|
export type { CustomPluginInfoRequestRequestBody } from './requestBodies/CustomPluginInfoRequestRequestBody';
|
|
105
113
|
export type { GenerateYamlRequestRequestBody } from './requestBodies/GenerateYamlRequestRequestBody';
|
|
106
114
|
export type { ImportHarnessEntitiesRequestRequestBody } from './requestBodies/ImportHarnessEntitiesRequestRequestBody';
|
|
115
|
+
export type { IntegrationRequestRequestBody } from './requestBodies/IntegrationRequestRequestBody';
|
|
107
116
|
export type { RequestPluginRequestRequestBody } from './requestBodies/RequestPluginRequestRequestBody';
|
|
108
117
|
export type { ScorecardRecalibrateRequestRequestBody } from './requestBodies/ScorecardRecalibrateRequestRequestBody';
|
|
109
118
|
export type { AllowListResponseResponse } from './responses/AllowListResponseResponse';
|
|
@@ -127,6 +136,8 @@ export type { GenerateYamlResponseResponse } from './responses/GenerateYamlRespo
|
|
|
127
136
|
export type { HarnessEntitiesCountResponseResponse } from './responses/HarnessEntitiesCountResponseResponse';
|
|
128
137
|
export type { HarnessEntitiesResponseResponse } from './responses/HarnessEntitiesResponseResponse';
|
|
129
138
|
export type { ImportEntitiesResponseResponse } from './responses/ImportEntitiesResponseResponse';
|
|
139
|
+
export type { IntegrationResponseListResponse } from './responses/IntegrationResponseListResponse';
|
|
140
|
+
export type { IntegrationResponseResponse } from './responses/IntegrationResponseResponse';
|
|
130
141
|
export type { LayoutResponseResponse } from './responses/LayoutResponseResponse';
|
|
131
142
|
export type { MergedPluginConfigResponseResponse } from './responses/MergedPluginConfigResponseResponse';
|
|
132
143
|
export type { PluginDetailedInfoResponseResponse } from './responses/PluginDetailedInfoResponseResponse';
|
|
@@ -152,6 +163,7 @@ export type { BackstageEnvVariableResponse } from './schemas/BackstageEnvVariabl
|
|
|
152
163
|
export type { BackstagePermissions } from './schemas/BackstagePermissions';
|
|
153
164
|
export type { BackstagePermissionsRequest } from './schemas/BackstagePermissionsRequest';
|
|
154
165
|
export type { BackstagePermissionsResponse } from './schemas/BackstagePermissionsResponse';
|
|
166
|
+
export type { BaseIntegrationRequest } from './schemas/BaseIntegrationRequest';
|
|
155
167
|
export type { CatalogConnectorInfo } from './schemas/CatalogConnectorInfo';
|
|
156
168
|
export type { Check } from './schemas/Check';
|
|
157
169
|
export type { CheckDetails } from './schemas/CheckDetails';
|
|
@@ -191,6 +203,7 @@ export type { ImportEntitiesBase } from './schemas/ImportEntitiesBase';
|
|
|
191
203
|
export type { ImportEntitiesResponse } from './schemas/ImportEntitiesResponse';
|
|
192
204
|
export type { InputDetails } from './schemas/InputDetails';
|
|
193
205
|
export type { InputValue } from './schemas/InputValue';
|
|
206
|
+
export type { IntegrationResponse } from './schemas/IntegrationResponse';
|
|
194
207
|
export type { LayoutIngestRequest } from './schemas/LayoutIngestRequest';
|
|
195
208
|
export type { LayoutRequest } from './schemas/LayoutRequest';
|
|
196
209
|
export type { LayoutResponse } from './schemas/LayoutResponse';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { createBackstageEnvVariables, useCreateBackstageEnvVariablesMutation, } from './hooks/useCreateBackstageEnvVariablesMutation';
|
|
2
2
|
export { createBackstagePermissions, useCreateBackstagePermissionsMutation, } from './hooks/useCreateBackstagePermissionsMutation';
|
|
3
3
|
export { createCheck, useCreateCheckMutation } from './hooks/useCreateCheckMutation';
|
|
4
|
+
export { createIntegration, useCreateIntegrationMutation, } from './hooks/useCreateIntegrationMutation';
|
|
4
5
|
export { createLayout, useCreateLayoutMutation } from './hooks/useCreateLayoutMutation';
|
|
5
6
|
export { createScorecard, useCreateScorecardMutation } from './hooks/useCreateScorecardMutation';
|
|
6
7
|
export { deleteCheck, useDeleteCheckMutation } from './hooks/useDeleteCheckMutation';
|
|
@@ -21,6 +22,8 @@ export { getDataSourcesDataPointsMap, useGetDataSourcesDataPointsMapQuery, } fro
|
|
|
21
22
|
export { getEntityFacets, useGetEntityFacetsQuery } from './hooks/useGetEntityFacetsQuery';
|
|
22
23
|
export { getHarnessEntitiesCount, useGetHarnessEntitiesCountQuery, } from './hooks/useGetHarnessEntitiesCountQuery';
|
|
23
24
|
export { getHarnessEntities, useGetHarnessEntitiesQuery } from './hooks/useGetHarnessEntitiesQuery';
|
|
25
|
+
export { getIntegration, useGetIntegrationQuery } from './hooks/useGetIntegrationQuery';
|
|
26
|
+
export { getIntegrations, useGetIntegrationsQuery } from './hooks/useGetIntegrationsQuery';
|
|
24
27
|
export { getLayout, useGetLayoutQuery } from './hooks/useGetLayoutQuery';
|
|
25
28
|
export { getMergedPluginsConfig, useGetMergedPluginsConfigQuery, } from './hooks/useGetMergedPluginsConfigQuery';
|
|
26
29
|
export { getPluginsInfoPluginId, useGetPluginsInfoPluginIdQuery, } from './hooks/useGetPluginsInfoPluginIdQuery';
|
|
@@ -45,4 +48,5 @@ export { updateBackstagePermissions, useUpdateBackstagePermissionsMutation, } fr
|
|
|
45
48
|
export { updateCheck, useUpdateCheckMutation } from './hooks/useUpdateCheckMutation';
|
|
46
49
|
export { updateConfigurationEntities, useUpdateConfigurationEntitiesMutation, } from './hooks/useUpdateConfigurationEntitiesMutation';
|
|
47
50
|
export { updateCustomPluginsInfo, useUpdateCustomPluginsInfoMutation, } from './hooks/useUpdateCustomPluginsInfoMutation';
|
|
51
|
+
export { updateIntegration, useUpdateIntegrationMutation, } from './hooks/useUpdateIntegrationMutation';
|
|
48
52
|
export { updateScorecard, useUpdateScorecardMutation } from './hooks/useUpdateScorecardMutation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|