@harnessio/react-dbops-service-client 0.14.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.
- package/dist/dbops-service/src/services/requestBodies/ConsumePluginRespRequestRequestBody.d.ts +4 -0
- package/dist/dbops-service/src/services/schemas/Command.d.ts +1 -1
- package/dist/dbops-service/src/services/schemas/DeployedStateOutput.d.ts +8 -0
- package/dist/dbops-service/src/services/schemas/InstanceMigrationStateChangeSet.d.ts +3 -0
- package/package.json +1 -1
package/dist/dbops-service/src/services/requestBodies/ConsumePluginRespRequestRequestBody.d.ts
CHANGED
|
@@ -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;
|
package/package.json
CHANGED