@harnessio/react-dbops-service-client 0.26.0 → 0.27.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,17 +11,17 @@ 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
- };
20
14
  /**
21
15
  * name of the database instance
22
16
  *
23
17
  */
24
18
  name?: string;
19
+ /**
20
+ * Placeholder replacement in migration scripts.
21
+ */
22
+ substituteProperties?: {
23
+ [key: string]: string;
24
+ };
25
25
  /**
26
26
  * Database instance tags
27
27
  */
@@ -21,16 +21,16 @@ 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
- };
30
24
  /**
31
25
  * name of the database instance
32
26
  */
33
27
  name?: string;
28
+ /**
29
+ * Placeholder replacement in migration scripts.
30
+ */
31
+ substituteProperties?: {
32
+ [key: string]: string;
33
+ };
34
34
  /**
35
35
  * tags attached to the database instance
36
36
  */
@@ -31,18 +31,18 @@ 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
- };
40
34
  /**
41
35
  * name of the database instance
42
36
  */
43
37
  name: string;
44
38
  schemaId?: string;
45
39
  schemaIdentifier?: string;
40
+ /**
41
+ * Placeholder replacement in migration scripts.
42
+ */
43
+ substituteProperties?: {
44
+ [key: string]: string;
45
+ };
46
46
  /**
47
47
  * tags attached to the database instance
48
48
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-dbops-service-client",
3
- "version": "0.26.0",
3
+ "version": "0.27.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",