@harnessio/react-dbops-service-client 0.18.0 → 0.19.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.
@@ -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';
@@ -7,6 +7,7 @@ export interface FailureInterruptRequestRequestBody {
7
7
  harnessCommand: Command;
8
8
  harnessParentStepType: string;
9
9
  instanceIdentifier: string;
10
+ interruptType: string;
10
11
  orgId: string;
11
12
  pipelineExecutionId: string;
12
13
  pipelineIdentifier: string;
@@ -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 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
@@ -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';
@@ -0,0 +1,3 @@
1
+ export interface DeployedChangeSets {
2
+ changeSetFQN: string;
3
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -8,6 +8,7 @@ export interface InstanceMigrationStateChangeSet {
8
8
  * Identifier of the Change Set
9
9
  */
10
10
  changeSet: string;
11
+ changeSetFQN: string;
11
12
  /**
12
13
  * comment defined in changeSet
13
14
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-dbops-service-client",
3
- "version": "0.18.0",
3
+ "version": "0.19.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",