@harnessio/react-idp-service-client 0.79.0 → 0.80.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/idp-service/src/services/hooks/useCreateIntegrationMutation.d.ts +1 -1
- package/dist/idp-service/src/services/hooks/useGetIntegrationQuery.d.ts +1 -1
- package/dist/idp-service/src/services/hooks/useGetIntegrationsQuery.d.ts +1 -1
- package/dist/idp-service/src/services/hooks/useUpdateIntegrationMutation.d.ts +1 -1
- package/dist/idp-service/src/services/schemas/BaseIntegrationRequest.d.ts +1 -1
- package/dist/idp-service/src/services/schemas/BaseIntegrationResponse.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import type { IntegrationRequestRequestBody } from '../requestBodies/Integration
|
|
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface CreateIntegrationMutationPathParams {
|
|
7
|
-
integration: 'git';
|
|
7
|
+
integration: 'catalog' | 'git';
|
|
8
8
|
}
|
|
9
9
|
export interface CreateIntegrationMutationQueryParams {
|
|
10
10
|
dry_run?: boolean;
|
|
@@ -3,7 +3,7 @@ import type { IntegrationResponseResponse } from '../responses/IntegrationRespon
|
|
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetIntegrationQueryPathParams {
|
|
6
|
-
integration: 'git';
|
|
6
|
+
integration: 'catalog' | 'git';
|
|
7
7
|
'integration-id': string;
|
|
8
8
|
}
|
|
9
9
|
export interface GetIntegrationQueryHeaderParams {
|
|
@@ -3,7 +3,7 @@ import type { IntegrationResponseListResponse } from '../responses/IntegrationRe
|
|
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetIntegrationsQueryPathParams {
|
|
6
|
-
integration: 'git';
|
|
6
|
+
integration: 'catalog' | 'git';
|
|
7
7
|
}
|
|
8
8
|
export interface GetIntegrationsQueryQueryParams {
|
|
9
9
|
page?: number;
|
|
@@ -4,7 +4,7 @@ import type { IntegrationRequestRequestBody } from '../requestBodies/Integration
|
|
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface UpdateIntegrationMutationPathParams {
|
|
7
|
-
integration: 'git';
|
|
7
|
+
integration: 'catalog' | 'git';
|
|
8
8
|
'integration-id': string;
|
|
9
9
|
}
|
|
10
10
|
export interface UpdateIntegrationMutationQueryParams {
|