@harnessio/react-idp-service-client 0.95.0 → 0.95.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/useDiscoverEntitiesQuery.d.ts +1 -0
- package/dist/idp-service/src/services/hooks/useGetImportedEntitiesQuery.d.ts +1 -0
- package/dist/idp-service/src/services/index.d.ts +1 -0
- package/dist/idp-service/src/services/responses/DiscoverEntitiesResponseListResponse.d.ts +2 -2
- package/dist/idp-service/src/services/schemas/DiscoverEntitiesResponse.d.ts +4 -0
- package/dist/idp-service/src/services/schemas/DiscoverEntitiesResponseBody.d.ts +8 -0
- package/dist/idp-service/src/services/schemas/DiscoverEntitiesResponseBody.js +1 -0
- package/package.json +1 -1
|
@@ -439,6 +439,7 @@ export type { DataSourceDataPointsMapResponse } from './schemas/DataSourceDataPo
|
|
|
439
439
|
export type { DataSourcesResponse } from './schemas/DataSourcesResponse';
|
|
440
440
|
export type { DefaultSaveResponse } from './schemas/DefaultSaveResponse';
|
|
441
441
|
export type { DiscoverEntitiesResponse } from './schemas/DiscoverEntitiesResponse';
|
|
442
|
+
export type { DiscoverEntitiesResponseBody } from './schemas/DiscoverEntitiesResponseBody';
|
|
442
443
|
export type { EntitiesByRefsRequest } from './schemas/EntitiesByRefsRequest';
|
|
443
444
|
export type { EntitiesForImport } from './schemas/EntitiesForImport';
|
|
444
445
|
export type { EntitiesGroups } from './schemas/EntitiesGroups';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export type DiscoverEntitiesResponseListResponse =
|
|
1
|
+
import type { DiscoverEntitiesResponseBody } from '../schemas/DiscoverEntitiesResponseBody';
|
|
2
|
+
export type DiscoverEntitiesResponseListResponse = DiscoverEntitiesResponseBody;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|