@harnessio/react-idp-service-client 0.33.0 → 0.34.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/useGetDataSourcesDataPointsMapQuery.d.ts +16 -0
- package/dist/idp-service/src/services/hooks/useGetDataSourcesDataPointsMapQuery.js +14 -0
- package/dist/idp-service/src/services/index.d.ts +5 -0
- package/dist/idp-service/src/services/index.js +1 -0
- package/dist/idp-service/src/services/responses/DataSourceDataPointsMapResponseResponse.d.ts +2 -0
- package/dist/idp-service/src/services/responses/DataSourceDataPointsMapResponseResponse.js +1 -0
- package/dist/idp-service/src/services/schemas/DataSourceDataPointsMap.d.ts +9 -0
- package/dist/idp-service/src/services/schemas/DataSourceDataPointsMap.js +1 -0
- package/dist/idp-service/src/services/schemas/DataSourceDataPointsMapResponse.d.ts +7 -0
- package/dist/idp-service/src/services/schemas/DataSourceDataPointsMapResponse.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DataSourceDataPointsMapResponseResponse } from '../responses/DataSourceDataPointsMapResponseResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface GetDataSourcesDataPointsMapQueryHeaderParams {
|
|
6
|
+
'Harness-Account'?: string;
|
|
7
|
+
}
|
|
8
|
+
export type GetDataSourcesDataPointsMapOkResponse = ResponseWithPagination<DataSourceDataPointsMapResponseResponse>;
|
|
9
|
+
export type GetDataSourcesDataPointsMapErrorResponse = unknown;
|
|
10
|
+
export interface GetDataSourcesDataPointsMapProps extends Omit<FetcherOptions<unknown, unknown, GetDataSourcesDataPointsMapQueryHeaderParams>, 'url'> {
|
|
11
|
+
}
|
|
12
|
+
export declare function getDataSourcesDataPointsMap(props: GetDataSourcesDataPointsMapProps): Promise<GetDataSourcesDataPointsMapOkResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* API for getting the map of data sources and data points for account
|
|
15
|
+
*/
|
|
16
|
+
export declare function useGetDataSourcesDataPointsMapQuery(props: GetDataSourcesDataPointsMapProps, options?: Omit<UseQueryOptions<GetDataSourcesDataPointsMapOkResponse, GetDataSourcesDataPointsMapErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetDataSourcesDataPointsMapOkResponse, 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 getDataSourcesDataPointsMap(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/data-sources/data-points/map`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* API for getting the map of data sources and data points for account
|
|
11
|
+
*/
|
|
12
|
+
export function useGetDataSourcesDataPointsMapQuery(props, options) {
|
|
13
|
+
return useQuery(['get-data-sources-data-points-map'], ({ signal }) => getDataSourcesDataPointsMap(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -31,6 +31,8 @@ export type { GetConnectorInfoErrorResponse, GetConnectorInfoOkResponse, GetConn
|
|
|
31
31
|
export { getConnectorInfo, useGetConnectorInfoQuery } from './hooks/useGetConnectorInfoQuery';
|
|
32
32
|
export type { GetDataPointsForDataSourceErrorResponse, GetDataPointsForDataSourceOkResponse, GetDataPointsForDataSourceProps, GetDataPointsForDataSourceQueryPathParams, } from './hooks/useGetDataPointsForDataSourceQuery';
|
|
33
33
|
export { getDataPointsForDataSource, useGetDataPointsForDataSourceQuery, } from './hooks/useGetDataPointsForDataSourceQuery';
|
|
34
|
+
export type { GetDataSourcesDataPointsMapErrorResponse, GetDataSourcesDataPointsMapOkResponse, GetDataSourcesDataPointsMapProps, } from './hooks/useGetDataSourcesDataPointsMapQuery';
|
|
35
|
+
export { getDataSourcesDataPointsMap, useGetDataSourcesDataPointsMapQuery, } from './hooks/useGetDataSourcesDataPointsMapQuery';
|
|
34
36
|
export type { GetEntityFacetsErrorResponse, GetEntityFacetsOkResponse, GetEntityFacetsProps, GetEntityFacetsQueryQueryParams, } from './hooks/useGetEntityFacetsQuery';
|
|
35
37
|
export { getEntityFacets, useGetEntityFacetsQuery } from './hooks/useGetEntityFacetsQuery';
|
|
36
38
|
export type { GetHarnessEntitiesCountErrorResponse, GetHarnessEntitiesCountOkResponse, GetHarnessEntitiesCountProps, } from './hooks/useGetHarnessEntitiesCountQuery';
|
|
@@ -94,6 +96,7 @@ export type { CheckDetailsResponseResponse } from './responses/CheckDetailsRespo
|
|
|
94
96
|
export type { CheckResponseListResponse } from './responses/CheckResponseListResponse';
|
|
95
97
|
export type { ConfigurationEntitiesResponseResponse } from './responses/ConfigurationEntitiesResponseResponse';
|
|
96
98
|
export type { ConnectorInfoResponseResponse } from './responses/ConnectorInfoResponseResponse';
|
|
99
|
+
export type { DataSourceDataPointsMapResponseResponse } from './responses/DataSourceDataPointsMapResponseResponse';
|
|
97
100
|
export type { DataSourcesResponseResponse } from './responses/DataSourcesResponseResponse';
|
|
98
101
|
export type { DatapointResponseResponse } from './responses/DatapointResponseResponse';
|
|
99
102
|
export type { DefaultSaveResponseResponse } from './responses/DefaultSaveResponseResponse';
|
|
@@ -137,6 +140,8 @@ export type { ConnectorInfoResponse } from './schemas/ConnectorInfoResponse';
|
|
|
137
140
|
export type { DataPoint } from './schemas/DataPoint';
|
|
138
141
|
export type { DataPointsResponse } from './schemas/DataPointsResponse';
|
|
139
142
|
export type { DataSource } from './schemas/DataSource';
|
|
143
|
+
export type { DataSourceDataPointsMap } from './schemas/DataSourceDataPointsMap';
|
|
144
|
+
export type { DataSourceDataPointsMapResponse } from './schemas/DataSourceDataPointsMapResponse';
|
|
140
145
|
export type { DataSourcesResponse } from './schemas/DataSourcesResponse';
|
|
141
146
|
export type { DefaultSaveResponse } from './schemas/DefaultSaveResponse';
|
|
142
147
|
export type { EntitiesForImport } from './schemas/EntitiesForImport';
|
|
@@ -14,6 +14,7 @@ export { getCheck, useGetCheckQuery } from './hooks/useGetCheckQuery';
|
|
|
14
14
|
export { getChecks, useGetChecksQuery } from './hooks/useGetChecksQuery';
|
|
15
15
|
export { getConnectorInfo, useGetConnectorInfoQuery } from './hooks/useGetConnectorInfoQuery';
|
|
16
16
|
export { getDataPointsForDataSource, useGetDataPointsForDataSourceQuery, } from './hooks/useGetDataPointsForDataSourceQuery';
|
|
17
|
+
export { getDataSourcesDataPointsMap, useGetDataSourcesDataPointsMapQuery, } from './hooks/useGetDataSourcesDataPointsMapQuery';
|
|
17
18
|
export { getEntityFacets, useGetEntityFacetsQuery } from './hooks/useGetEntityFacetsQuery';
|
|
18
19
|
export { getHarnessEntitiesCount, useGetHarnessEntitiesCountQuery, } from './hooks/useGetHarnessEntitiesCountQuery';
|
|
19
20
|
export { getHarnessEntities, useGetHarnessEntitiesQuery } from './hooks/useGetHarnessEntitiesQuery';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { DataPoint } from '../schemas/DataPoint';
|
|
2
|
+
import type { DataSource } from '../schemas/DataSource';
|
|
3
|
+
/**
|
|
4
|
+
* Mapping of data source with data points
|
|
5
|
+
*/
|
|
6
|
+
export interface DataSourceDataPointsMap {
|
|
7
|
+
data_points: DataPoint[];
|
|
8
|
+
data_source: DataSource;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { DataSourceDataPointsMap } from '../schemas/DataSourceDataPointsMap';
|
|
2
|
+
/**
|
|
3
|
+
* Response for getting the data sources and data points map
|
|
4
|
+
*/
|
|
5
|
+
export interface DataSourceDataPointsMapResponse {
|
|
6
|
+
data_source_data_points_map: DataSourceDataPointsMap[];
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|