@harnessio/react-dbops-service-client 0.21.0 → 0.23.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.
|
@@ -6,6 +6,10 @@ import type { CommandExecutionStatus } from '../schemas/CommandExecutionStatus';
|
|
|
6
6
|
*/
|
|
7
7
|
export interface DeployedStateOutput {
|
|
8
8
|
author: string;
|
|
9
|
+
/**
|
|
10
|
+
* changesetFQN is a unique identifier for database changesets in the format filename::changesetId::author
|
|
11
|
+
*/
|
|
12
|
+
changeSetFQN: string;
|
|
9
13
|
changeSetId: string;
|
|
10
14
|
command: Command;
|
|
11
15
|
/**
|
|
@@ -8,6 +8,10 @@ export interface MigrationStateChangeSet {
|
|
|
8
8
|
* Identifier of the Change Set
|
|
9
9
|
*/
|
|
10
10
|
changeSet: string;
|
|
11
|
+
/**
|
|
12
|
+
* changesetFQN is a unique identifier for database changesets in the format filename::changesetId::author
|
|
13
|
+
*/
|
|
14
|
+
changeSetFQN: string;
|
|
11
15
|
fileName: string;
|
|
12
16
|
instances: MigrationStateInstance[];
|
|
13
17
|
/**
|
package/package.json
CHANGED