@or-sdk/store 2.1.10-beta.4275.0 → 2.2.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 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
+ ## [2.2.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/store@2.1.9...@or-sdk/store@2.2.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
  ## [2.1.9](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/store@2.1.4...@or-sdk/store@2.1.9) (2026-08-04)
7
16
 
8
17
  **Note:** Version bump only for package @or-sdk/store
package/README.md CHANGED
@@ -65,3 +65,27 @@ const store = new Store({
65
65
  ## More detail
66
66
 
67
67
  Full signatures and exported types are available in `src/` and `dist/types/`.
68
+
69
+
70
+ ## Additional API reference
71
+
72
+ Methods below were missing from the package guide. Signatures and return types are taken directly from the exported source API.
73
+
74
+ ### `Store`
75
+
76
+ | Method | Returns | Purpose |
77
+ |---|---|---|
78
+ | `getFavorites(params: Omit<SearchParams, 'scope'>, { type, signal }: OptionalParams = {})` | `Promise<void>` | List favorites |
79
+ | `submitLegacyStepJson(legacyStepTemplate: LegacyStepTemplate, { signal }: Pick<OptionalParams, 'signal'> = {})` | `Promise<void>` | Submit legacy Step Template to Store API |
80
+ | `getLegacyStepJson({ id, version }: GetParams, { signal }: Pick<OptionalParams, 'signal'> = {})` | `Promise<void>` | Get legacy Step Template from Store API |
81
+ | `syncLegacyStepFromLibrary({ id }: Pick<GetParams, 'id'>, { signal }: Pick<OptionalParams, 'signal'> = {})` | `Promise<void>` | Sync legacy Step Templates from Sandbox Account |
82
+ | `setReleaseStatus(data: GetParams & ReleaseParams, { type, signal }: OptionalParams = {})` | `Promise<void>` | Set release status |
83
+ | `setReleaseStatusToBeta(data: GetParams & ReleaseParams, { type, signal }: OptionalParams = {})` | `Promise<void>` | Set release status to BETA |
84
+ | `setReleaseStatusToReleased(data: GetParams & ReleaseParams, { type, signal }: OptionalParams = {})` | `Promise<void>` | Set release status to RELEASED |
85
+ | `setReleaseStatusToDeprecated(data: GetParams & ReleaseParams, { type, signal }: OptionalParams = {})` | `Promise<void>` | Set release status to DEPRECATED |
86
+ | `deprecateLegacyStep(data: GetParams & ReleaseParams, { signal }: Pick<OptionalParams, 'signal'> = {})` | `Promise<void>` | Deprecate legacy Step Template |
87
+ | `deprecateLegacySteps(data: DeprecateLegacyStepsParams, { signal }: Pick<OptionalParams, 'signal'> = {})` | `Promise<void>` | Deprecate multiple legacy Step Templates |
88
+ | `getDownloadArchiveCredentials({ id, version }: GetParams, { signal, customHeaders }: CrossEnvOptionalParams = {})` | `Promise<string>` | Get download package archive url |
89
+ | `syncInputFromLibrary({ id, version }: GetParams, { signal, customHeaders }: CrossEnvOptionalParams = {})` | `Promise<void>` | Sync inputs from global library to specific env |
90
+ | `getNewPackages(params: GetParams, { signal, customHeaders }: CrossEnvOptionalParams = {})` | `Promise<void>` | Get new packages |
91
+ | `getPopularPackages(params: GetParams, { signal, customHeaders }: CrossEnvOptionalParams = {})` | `Promise<void>` | Get popular packages |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/store",
3
- "version": "2.1.10-beta.4275.0",
3
+ "version": "2.2.0",
4
4
  "description": "OneReach SDK client for Store",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/cjs/index.js",
@@ -33,5 +33,6 @@
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
- }
36
+ },
37
+ "gitHead": "6dc62c7c3a3a05b2dfc5a1c7c9bfd4c5e8eb0b99"
37
38
  }