@retailcrm/embed-ui 0.0.1 → 0.1.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
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.1.0](https://github.com/retailcrm/embed-ui/compare/v0.0.1...v0.1.0) (2024-04-27)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * @remote-ui/core types replaced with alternatives from @omnicajs/vue-remote
11
+
12
+ ### Features
13
+
14
+ * @remote-ui/core types replaced with alternatives from @omnicajs/vue-remote ([c265070](https://github.com/retailcrm/embed-ui/commit/c265070c404cc7fb376234d402f28b030c241e23))
15
+
5
16
  ### 0.0.1 (2024-04-26)
6
17
 
7
18
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@retailcrm/embed-ui",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.1.0",
5
5
  "description": "API and components for creating RetailCRM UI extensions",
6
6
  "main": "index.js",
7
7
  "repository": "git@github.com:retailcrm/embed-ui.git",
@@ -18,7 +18,7 @@
18
18
  "release:patch": "standard-version --release-as patch"
19
19
  },
20
20
  "dependencies": {
21
- "@remote-ui/core": "^2.2.4",
21
+ "@omnicajs/vue-remote": "^0.1.3",
22
22
  "@remote-ui/rpc": "^1.4.5"
23
23
  },
24
24
  "devDependencies": {
@@ -3,13 +3,13 @@ import type {
3
3
  None,
4
4
  } from './scaffolding'
5
5
 
6
- import type { RemoteChannel } from '@remote-ui/core'
6
+ import type { Channel } from '@omnicajs/vue-remote/host'
7
7
  import type { Endpoint as RemoteEndpoint } from '@remote-ui/rpc'
8
8
 
9
9
  export interface EndpointApi<
10
10
  PageApi extends Record<string, AnyFunction> = None
11
11
  > {
12
- run (channel: RemoteChannel, api: PageApi): Promise<void>;
12
+ run (channel: Channel, api: PageApi): Promise<void>;
13
13
  release (): void;
14
14
  }
15
15