@harnessio/react-idp-service-client 0.49.9 → 0.49.10
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/index.d.ts +1 -0
- package/dist/idp-service/src/services/schemas/CdEntityAsIdpEntity.d.ts +9 -0
- package/dist/idp-service/src/services/schemas/CdEntityAsIdpEntity.js +4 -0
- package/dist/idp-service/src/services/schemas/OnboardingCdEntitiesFetchResponse.d.ts +2 -8
- package/dist/idp-service/src/services/schemas/OnboardingCdEntitiesFetchResponse.js +0 -3
- package/package.json +1 -1
|
@@ -192,6 +192,7 @@ export type { BackstagePermissionsResponse } from './schemas/BackstagePermission
|
|
|
192
192
|
export type { BaseIntegrationRequest } from './schemas/BaseIntegrationRequest';
|
|
193
193
|
export type { BaseIntegrationResponse } from './schemas/BaseIntegrationResponse';
|
|
194
194
|
export type { CatalogConnectorInfo } from './schemas/CatalogConnectorInfo';
|
|
195
|
+
export type { CdEntityAsIdpEntity } from './schemas/CdEntityAsIdpEntity';
|
|
195
196
|
export type { Check } from './schemas/Check';
|
|
196
197
|
export type { CheckDetails } from './schemas/CheckDetails';
|
|
197
198
|
export type { CheckDetailsRequest } from './schemas/CheckDetailsRequest';
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
+
import type { CdEntityAsIdpEntity } from '../schemas/CdEntityAsIdpEntity';
|
|
1
2
|
export interface OnboardingCdEntitiesFetchResponse {
|
|
2
|
-
|
|
3
|
-
harness_absolute_identifier: string;
|
|
4
|
-
harness_type: string;
|
|
5
|
-
name: string;
|
|
6
|
-
owner: string;
|
|
7
|
-
system: string;
|
|
8
|
-
type: string;
|
|
9
|
-
}>;
|
|
3
|
+
entities: CdEntityAsIdpEntity[];
|
|
10
4
|
organizations_count: number;
|
|
11
5
|
projects_count: number;
|
|
12
6
|
services_count: number;
|