@harnessio/react-dbops-service-client 0.15.0 → 0.16.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.
@@ -2,6 +2,10 @@ import type { Command } from '../schemas/Command';
2
2
  import type { CommandExecutionStatus } from '../schemas/CommandExecutionStatus';
3
3
  export interface ConsumePluginRespRequestRequestBody {
4
4
  command: Command;
5
+ /**
6
+ * compressed step output
7
+ */
8
+ compressedStepOutput?: string;
5
9
  /**
6
10
  * Data associated with command execution
7
11
  */
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Type of the plugin command to run
3
3
  */
4
- export type Command = 'Clone' | 'Custom' | 'History' | 'ParentWrapper' | 'Rollback' | 'RollbackSQL' | 'Tag' | 'Update' | 'UpdateSQL' | 'Validate';
4
+ export type Command = 'Clone' | 'Custom' | 'History' | 'ParentWrapper' | 'Rollback' | 'RollbackSQL' | 'Status' | 'Tag' | 'Update' | 'UpdateSQL' | 'Validate';
@@ -8,6 +8,10 @@ export interface DeployedStateOutput {
8
8
  author: string;
9
9
  changeSetId: string;
10
10
  command: Command;
11
+ /**
12
+ * comment in changeset definition
13
+ */
14
+ comment?: string;
11
15
  /**
12
16
  * @format int64
13
17
  */
@@ -17,6 +21,10 @@ export interface DeployedStateOutput {
17
21
  */
18
22
  deployedInCurrentExecution: boolean;
19
23
  fileName: string;
24
+ /**
25
+ * label in changeset definition
26
+ */
27
+ label?: string;
20
28
  metadata: ExecutionMetadata;
21
29
  status: CommandExecutionStatus;
22
30
  tag?: string;
@@ -21,6 +21,9 @@ export interface InstanceMigrationStateChangeSet {
21
21
  * label defined in changeSet
22
22
  */
23
23
  label?: string;
24
+ pipeline: string;
25
+ planExecutionId: string;
26
+ stageExecutionId: string;
24
27
  status: ChangeSetDeploymentStatus;
25
28
  tag?: string;
26
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-dbops-service-client",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "Harness React DB Devops service client - DB Devops APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",