@harnessio/react-idp-service-client 0.49.2 → 0.49.3

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.
@@ -10,4 +10,5 @@ export interface BackstagePermissions {
10
10
  */
11
11
  updated?: number;
12
12
  user_group?: string;
13
+ user_groups?: string[];
13
14
  }
@@ -3,6 +3,6 @@ import type { GitIntegrationRequest } from '../schemas/GitIntegrationRequest';
3
3
  * Abstract base for integration request
4
4
  */
5
5
  export interface BaseIntegrationRequest {
6
- oneOf?: GitIntegrationRequest;
6
+ integration_request?: GitIntegrationRequest;
7
7
  type: 'git';
8
8
  }
@@ -1,5 +1,5 @@
1
1
  import type { GitIntegrationResponse } from '../schemas/GitIntegrationResponse';
2
2
  export interface IntegrationResponse {
3
+ integration_response?: GitIntegrationResponse;
3
4
  integration_type: 'git';
4
- oneOf?: GitIntegrationResponse;
5
5
  }
@@ -1,6 +1,7 @@
1
1
  export interface ValidationResponse {
2
2
  error?: string;
3
3
  status?: string;
4
+ url?: string;
4
5
  /**
5
6
  * @format int64
6
7
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.49.2",
3
+ "version": "0.49.3",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",