@harnessio/react-dbops-service-client 0.13.0 → 0.15.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/DbInstanceUpdateRequestRequestBody.d.ts
CHANGED
|
@@ -11,6 +11,12 @@ export interface DbInstanceUpdateRequestRequestBody {
|
|
|
11
11
|
* Liquibase context
|
|
12
12
|
*/
|
|
13
13
|
context?: string;
|
|
14
|
+
/**
|
|
15
|
+
* properties to substitute in liquibase changelog
|
|
16
|
+
*/
|
|
17
|
+
liquibaseSubstituteProperties?: {
|
|
18
|
+
[key: string]: string;
|
|
19
|
+
};
|
|
14
20
|
/**
|
|
15
21
|
* name of the database instance
|
|
16
22
|
*
|
|
@@ -21,6 +21,12 @@ export interface DbInstanceIn {
|
|
|
21
21
|
* identifier of the database instance
|
|
22
22
|
*/
|
|
23
23
|
identifier: string;
|
|
24
|
+
/**
|
|
25
|
+
* properties to substitute in liquibase changelog
|
|
26
|
+
*/
|
|
27
|
+
liquibaseSubstituteProperties?: {
|
|
28
|
+
[key: string]: string;
|
|
29
|
+
};
|
|
24
30
|
/**
|
|
25
31
|
* name of the database instance
|
|
26
32
|
*/
|
|
@@ -31,6 +31,12 @@ export interface DbInstanceOut {
|
|
|
31
31
|
* Tag on last deployed changeSet
|
|
32
32
|
*/
|
|
33
33
|
lastDeployedChangeSetTag: string;
|
|
34
|
+
/**
|
|
35
|
+
* properties to substitute in liquibase changelog
|
|
36
|
+
*/
|
|
37
|
+
liquibaseSubstituteProperties?: {
|
|
38
|
+
[key: string]: string;
|
|
39
|
+
};
|
|
34
40
|
/**
|
|
35
41
|
* name of the database instance
|
|
36
42
|
*/
|
package/package.json
CHANGED