@or-sdk/deployer 0.24.2-384.0 → 0.24.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [0.24.3](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@0.24.2...@or-sdk/deployer@0.24.3) (2022-06-03)
7
+
8
+ **Note:** Version bump only for package @or-sdk/deployer
9
+
10
+
11
+
12
+
13
+
14
+ ### [0.24.2](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@0.24.1...@or-sdk/deployer@0.24.2) (2022-05-24)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **deployer:** Added import for StepTemplate type ([f5b1e87](https://gitlab.com/onereach/platform/or-sdk-next/commit/f5b1e8784e1c290b6edda838dae18f85fdc605bc))
20
+
21
+
22
+
6
23
  ### [0.24.1](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@0.24.0...@or-sdk/deployer@0.24.1) (2022-05-12)
7
24
 
8
25
  **Note:** Version bump only for package @or-sdk/deployer
@@ -1,4 +1,6 @@
1
1
  import { Token } from '@or-sdk/base';
2
+ import { StepTemplateRaw } from '@or-sdk/step-templates';
3
+ export { StepTemplateRaw } from '@or-sdk/step-templates';
2
4
  export declare type DeployerConfig = {
3
5
  token: Token;
4
6
  discoveryUrl?: string;
@@ -50,6 +52,7 @@ export declare type Flow = {
50
52
  role: string;
51
53
  };
52
54
  description: string;
55
+ stepTemplates: StepTemplateRaw[];
53
56
  trees: {
54
57
  [key: string]: Tree;
55
58
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.24.2-384.0",
2
+ "version": "0.24.3",
3
3
  "name": "@or-sdk/deployer",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
@@ -24,7 +24,9 @@
24
24
  "access": "public"
25
25
  },
26
26
  "dependencies": {
27
- "@or-sdk/base": "^0.23.2-384.0",
27
+ "@or-sdk/base": "^0.24.0",
28
+ "@or-sdk/step-templates": "^1.1.1",
28
29
  "lodash": "^4.17.21"
29
- }
30
+ },
31
+ "gitHead": "816010da8896a046faa73b672c6d8f6ed4d30fe7"
30
32
  }
package/src/types.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  import { Token } from '@or-sdk/base';
2
+ import { StepTemplateRaw } from '@or-sdk/step-templates';
3
+ export { StepTemplateRaw } from '@or-sdk/step-templates';
2
4
 
3
5
  export type DeployerConfig = {
4
6
  /**
@@ -71,6 +73,7 @@ export type Flow = {
71
73
  role: string;
72
74
  };
73
75
  description: string;
76
+ stepTemplates: StepTemplateRaw[];
74
77
  trees: {
75
78
  [key: string]: Tree;
76
79
  };