@or-sdk/deployer 1.7.9-beta.4275.0 → 1.8.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/CHANGELOG.md +9 -0
- package/README.md +11 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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
|
+
## [1.8.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@1.7.8...@or-sdk/deployer@1.8.0) (2026-08-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **packages:** add package descriptions and published files metadata ([801f823](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/801f823034717ef8b961405a73d51ebc2ec07649))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.7.8](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@1.7.4...@or-sdk/deployer@1.7.8) (2026-08-04)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/deployer
|
package/README.md
CHANGED
|
@@ -63,3 +63,14 @@ const deployer = new Deployer({
|
|
|
63
63
|
## More detail
|
|
64
64
|
|
|
65
65
|
Full signatures and exported types are available in `src/` and `dist/types/`.
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## Additional API reference
|
|
69
|
+
|
|
70
|
+
Methods below were missing from the package guide. Signatures and return types are taken directly from the exported source API.
|
|
71
|
+
|
|
72
|
+
### `Deployer`
|
|
73
|
+
|
|
74
|
+
| Method | Returns | Purpose |
|
|
75
|
+
|---|---|---|
|
|
76
|
+
| `pollResult({ flowId, requestId }: PollingParams, progressCallback?: (progress: PollingResultPending) => void, options?: PollingOptions)` | `Promise<T>` | Polls for activation or deactivation status, which can be 'pending' during the process |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/deployer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "OneReach SDK client for Deployer",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@or-sdk/base": "^0.44.7",
|
|
29
|
-
"@or-sdk/step-templates": "^2.
|
|
29
|
+
"@or-sdk/step-templates": "^2.3.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"concurrently": "9.0.1",
|
|
@@ -34,5 +34,6 @@
|
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
|
-
}
|
|
37
|
+
},
|
|
38
|
+
"gitHead": "6dc62c7c3a3a05b2dfc5a1c7c9bfd4c5e8eb0b99"
|
|
38
39
|
}
|