@harnessio/react-dbops-service-client 0.9.0 → 0.10.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/PluginStepInputsRequestRequestBody.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ export interface PluginStepInputsRequestRequestBody {
|
|
|
23
23
|
*/
|
|
24
24
|
dbSchema: string;
|
|
25
25
|
directory?: string;
|
|
26
|
+
/**
|
|
27
|
+
* if changeLogFile is required or not for LiquibaseCommand step. If true, then dbops-clone will not happen and changeLog is not passed in the settings.
|
|
28
|
+
*/
|
|
29
|
+
excludeChangeLogFile?: boolean;
|
|
26
30
|
pipelineExecutionMetadata?: {
|
|
27
31
|
pipeline: string;
|
|
28
32
|
planExecutionId: string;
|
|
@@ -8,6 +8,9 @@ export interface MigrationStateInstance {
|
|
|
8
8
|
* Identfier of the instance
|
|
9
9
|
*/
|
|
10
10
|
instance: string;
|
|
11
|
+
pipeline: string;
|
|
12
|
+
planExecutionId: string;
|
|
13
|
+
stageExecutionId: string;
|
|
11
14
|
status: ChangeSetDeploymentStatus;
|
|
12
15
|
/**
|
|
13
16
|
* Time of last Change Set Deployment/Rollback attempt
|
package/package.json
CHANGED