@harnessio/react-rmg-service-client 0.63.0 → 0.64.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/rmg-service/src/services/index.d.ts +1 -0
- package/dist/rmg-service/src/services/schemas/ReleaseApprovalDto.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/WebhookSignalPipeline.d.ts +18 -0
- package/dist/rmg-service/src/services/schemas/WebhookSignalPipeline.js +4 -0
- package/dist/rmg-service/src/services/schemas/WebhookSignalRequest.d.ts +4 -2
- package/package.json +1 -1
|
@@ -357,6 +357,7 @@ export type { UploadResponse } from './schemas/UploadResponse';
|
|
|
357
357
|
export type { User } from './schemas/User';
|
|
358
358
|
export type { WebhookErrorResponse } from './schemas/WebhookErrorResponse';
|
|
359
359
|
export type { WebhookEventType } from './schemas/WebhookEventType';
|
|
360
|
+
export type { WebhookSignalPipeline } from './schemas/WebhookSignalPipeline';
|
|
360
361
|
export type { WebhookSignalRequest } from './schemas/WebhookSignalRequest';
|
|
361
362
|
export type { WebhookSignalResponse } from './schemas/WebhookSignalResponse';
|
|
362
363
|
export type { WebhookSignalStatus } from './schemas/WebhookSignalStatus';
|
|
@@ -4,6 +4,10 @@ import type { ReleaseApprovalType } from '../schemas/ReleaseApprovalType';
|
|
|
4
4
|
export interface ReleaseApprovalDto {
|
|
5
5
|
approvalInfo?: ApprovalInfoDto;
|
|
6
6
|
name: string;
|
|
7
|
+
/**
|
|
8
|
+
* Node execution ID of the approval step
|
|
9
|
+
*/
|
|
10
|
+
nodeExecutionId?: string;
|
|
7
11
|
orgIdentifier: string;
|
|
8
12
|
pipelineIdentifier: string;
|
|
9
13
|
planExecutionId: string;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface WebhookSignalPipeline {
|
|
2
|
+
/**
|
|
3
|
+
* Pipeline execution identifier.
|
|
4
|
+
*/
|
|
5
|
+
executionId: string;
|
|
6
|
+
/**
|
|
7
|
+
* Pipeline identifier.
|
|
8
|
+
*/
|
|
9
|
+
identifier: string;
|
|
10
|
+
/**
|
|
11
|
+
* Organization identifier.
|
|
12
|
+
*/
|
|
13
|
+
orgId: string;
|
|
14
|
+
/**
|
|
15
|
+
* Project identifier.
|
|
16
|
+
*/
|
|
17
|
+
projectId: string;
|
|
18
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { WebhookEventType } from '../schemas/WebhookEventType';
|
|
2
|
+
import type { WebhookSignalPipeline } from '../schemas/WebhookSignalPipeline';
|
|
2
3
|
export interface WebhookSignalRequest {
|
|
3
4
|
eventType: WebhookEventType;
|
|
4
5
|
/**
|
|
5
|
-
* Event
|
|
6
|
+
* Event metadata. Maximum size 10 KiB.
|
|
6
7
|
*/
|
|
7
|
-
|
|
8
|
+
metadata: {
|
|
8
9
|
[key: string]: any;
|
|
9
10
|
};
|
|
11
|
+
pipeline?: WebhookSignalPipeline;
|
|
10
12
|
}
|