@harnessio/react-idp-service-client 0.32.0 → 0.33.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/useCreateCheckMutation.d.ts +2 -1
- package/dist/idp-service/src/services/hooks/useCreateScorecardMutation.d.ts +2 -1
- package/dist/idp-service/src/services/hooks/useGetChecksQuery.d.ts +4 -0
- package/dist/idp-service/src/services/hooks/useUpdateCheckMutation.d.ts +2 -1
- package/dist/idp-service/src/services/hooks/useUpdateScorecardMutation.d.ts +2 -1
- package/dist/idp-service/src/services/index.d.ts +2 -0
- package/dist/idp-service/src/services/responses/DefaultSaveResponseResponse.d.ts +2 -0
- package/dist/idp-service/src/services/responses/DefaultSaveResponseResponse.js +1 -0
- package/dist/idp-service/src/services/schemas/DefaultSaveResponse.d.ts +6 -0
- package/dist/idp-service/src/services/schemas/DefaultSaveResponse.js +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DefaultSaveResponseResponse } from '../responses/DefaultSaveResponseResponse';
|
|
2
3
|
import type { CheckDetailsRequest } from '../schemas/CheckDetailsRequest';
|
|
3
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
@@ -6,7 +7,7 @@ export interface CreateCheckMutationHeaderParams {
|
|
|
6
7
|
'Harness-Account'?: string;
|
|
7
8
|
}
|
|
8
9
|
export type CreateCheckRequestBody = CheckDetailsRequest;
|
|
9
|
-
export type CreateCheckOkResponse = ResponseWithPagination<
|
|
10
|
+
export type CreateCheckOkResponse = ResponseWithPagination<DefaultSaveResponseResponse>;
|
|
10
11
|
export type CreateCheckErrorResponse = unknown;
|
|
11
12
|
export interface CreateCheckProps extends Omit<FetcherOptions<unknown, CreateCheckRequestBody, CreateCheckMutationHeaderParams>, 'url'> {
|
|
12
13
|
body: CreateCheckRequestBody;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DefaultSaveResponseResponse } from '../responses/DefaultSaveResponseResponse';
|
|
2
3
|
import type { ScorecardDetailsRequest } from '../schemas/ScorecardDetailsRequest';
|
|
3
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
@@ -6,7 +7,7 @@ export interface CreateScorecardMutationHeaderParams {
|
|
|
6
7
|
'Harness-Account'?: string;
|
|
7
8
|
}
|
|
8
9
|
export type CreateScorecardRequestBody = ScorecardDetailsRequest;
|
|
9
|
-
export type CreateScorecardOkResponse = ResponseWithPagination<
|
|
10
|
+
export type CreateScorecardOkResponse = ResponseWithPagination<DefaultSaveResponseResponse>;
|
|
10
11
|
export type CreateScorecardErrorResponse = unknown;
|
|
11
12
|
export interface CreateScorecardProps extends Omit<FetcherOptions<unknown, CreateScorecardRequestBody, CreateScorecardMutationHeaderParams>, 'url'> {
|
|
12
13
|
body: CreateScorecardRequestBody;
|
|
@@ -4,6 +4,10 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetChecksQueryQueryParams {
|
|
6
6
|
custom?: boolean;
|
|
7
|
+
page?: number;
|
|
8
|
+
limit?: number;
|
|
9
|
+
sort?: string;
|
|
10
|
+
search_term?: string;
|
|
7
11
|
}
|
|
8
12
|
export interface GetChecksQueryHeaderParams {
|
|
9
13
|
'Harness-Account'?: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DefaultSaveResponseResponse } from '../responses/DefaultSaveResponseResponse';
|
|
2
3
|
import type { CheckDetailsRequest } from '../schemas/CheckDetailsRequest';
|
|
3
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
@@ -9,7 +10,7 @@ export interface UpdateCheckMutationHeaderParams {
|
|
|
9
10
|
'Harness-Account'?: string;
|
|
10
11
|
}
|
|
11
12
|
export type UpdateCheckRequestBody = CheckDetailsRequest;
|
|
12
|
-
export type UpdateCheckOkResponse = ResponseWithPagination<
|
|
13
|
+
export type UpdateCheckOkResponse = ResponseWithPagination<DefaultSaveResponseResponse>;
|
|
13
14
|
export type UpdateCheckErrorResponse = unknown;
|
|
14
15
|
export interface UpdateCheckProps extends UpdateCheckMutationPathParams, Omit<FetcherOptions<unknown, UpdateCheckRequestBody, UpdateCheckMutationHeaderParams>, 'url'> {
|
|
15
16
|
body: UpdateCheckRequestBody;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DefaultSaveResponseResponse } from '../responses/DefaultSaveResponseResponse';
|
|
2
3
|
import type { ScorecardDetailsRequest } from '../schemas/ScorecardDetailsRequest';
|
|
3
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
@@ -9,7 +10,7 @@ export interface UpdateScorecardMutationHeaderParams {
|
|
|
9
10
|
'Harness-Account'?: string;
|
|
10
11
|
}
|
|
11
12
|
export type UpdateScorecardRequestBody = ScorecardDetailsRequest;
|
|
12
|
-
export type UpdateScorecardOkResponse = ResponseWithPagination<
|
|
13
|
+
export type UpdateScorecardOkResponse = ResponseWithPagination<DefaultSaveResponseResponse>;
|
|
13
14
|
export type UpdateScorecardErrorResponse = unknown;
|
|
14
15
|
export interface UpdateScorecardProps extends UpdateScorecardMutationPathParams, Omit<FetcherOptions<unknown, UpdateScorecardRequestBody, UpdateScorecardMutationHeaderParams>, 'url'> {
|
|
15
16
|
body: UpdateScorecardRequestBody;
|
|
@@ -96,6 +96,7 @@ export type { ConfigurationEntitiesResponseResponse } from './responses/Configur
|
|
|
96
96
|
export type { ConnectorInfoResponseResponse } from './responses/ConnectorInfoResponseResponse';
|
|
97
97
|
export type { DataSourcesResponseResponse } from './responses/DataSourcesResponseResponse';
|
|
98
98
|
export type { DatapointResponseResponse } from './responses/DatapointResponseResponse';
|
|
99
|
+
export type { DefaultSaveResponseResponse } from './responses/DefaultSaveResponseResponse';
|
|
99
100
|
export type { FacetsResponseResponse } from './responses/FacetsResponseResponse';
|
|
100
101
|
export type { GenerateYamlResponseResponse } from './responses/GenerateYamlResponseResponse';
|
|
101
102
|
export type { HarnessEntitiesCountResponseResponse } from './responses/HarnessEntitiesCountResponseResponse';
|
|
@@ -137,6 +138,7 @@ export type { DataPoint } from './schemas/DataPoint';
|
|
|
137
138
|
export type { DataPointsResponse } from './schemas/DataPointsResponse';
|
|
138
139
|
export type { DataSource } from './schemas/DataSource';
|
|
139
140
|
export type { DataSourcesResponse } from './schemas/DataSourcesResponse';
|
|
141
|
+
export type { DefaultSaveResponse } from './schemas/DefaultSaveResponse';
|
|
140
142
|
export type { EntitiesForImport } from './schemas/EntitiesForImport';
|
|
141
143
|
export type { ExportDetails } from './schemas/ExportDetails';
|
|
142
144
|
export type { Exports } from './schemas/Exports';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|