@harnessio/react-dbops-service-client 0.18.0 → 0.20.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/index.d.ts +1 -0
- package/dist/dbops-service/src/services/requestBodies/FailureInterruptRequestRequestBody.d.ts +1 -0
- package/dist/dbops-service/src/services/schemas/CustomOperationOutput.d.ts +3 -0
- package/dist/dbops-service/src/services/schemas/CustomOperationOutput.js +0 -3
- package/dist/dbops-service/src/services/schemas/CustomOperations.d.ts +1 -1
- package/dist/dbops-service/src/services/schemas/DeployedChangeSets.d.ts +3 -0
- package/dist/dbops-service/src/services/schemas/DeployedChangeSets.js +4 -0
- package/dist/dbops-service/src/services/schemas/InstanceMigrationStateChangeSet.d.ts +1 -0
- package/dist/dbops-service/src/services/schemas/MigrationStateInstance.d.ts +1 -0
- package/package.json +1 -1
|
@@ -112,6 +112,7 @@ export type { DbSchemaIn } from './schemas/DbSchemaIn';
|
|
|
112
112
|
export type { DbSchemaOut } from './schemas/DbSchemaOut';
|
|
113
113
|
export type { DbSchemaType } from './schemas/DbSchemaType';
|
|
114
114
|
export type { DbStepType } from './schemas/DbStepType';
|
|
115
|
+
export type { DeployedChangeSets } from './schemas/DeployedChangeSets';
|
|
115
116
|
export type { DeployedChangesetSqlOutput } from './schemas/DeployedChangesetSqlOutput';
|
|
116
117
|
export type { DeployedStateInput } from './schemas/DeployedStateInput';
|
|
117
118
|
export type { DeployedStateOutput } from './schemas/DeployedStateOutput';
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import type { DeployedChangeSets } from '../schemas/DeployedChangeSets';
|
|
1
2
|
/**
|
|
2
3
|
* Output for custom property result
|
|
3
4
|
*/
|
|
4
5
|
export interface CustomOperationOutput {
|
|
6
|
+
deployedChangeSets?: DeployedChangeSets[];
|
|
5
7
|
earlierRunInStage?: boolean;
|
|
8
|
+
preStartTag?: string;
|
|
6
9
|
successfulChangeSetDeploymentInStage?: boolean;
|
|
7
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Enum for custom operations supported
|
|
3
3
|
*/
|
|
4
|
-
export type CustomOperations = 'EarlierRunInStage' | 'SuccessfulChangeSetDeploymentInStage';
|
|
4
|
+
export type CustomOperations = 'DeployedChangeSets' | 'EarlierRunInStage' | 'PreStartTag' | 'SuccessfulChangeSetDeploymentInStage';
|
package/package.json
CHANGED