@harnessio/react-dbops-service-client 0.13.0 → 0.14.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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-dbops-service-client",
3
- "version": "0.13.0",
3
+ "version": "0.14.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",