Skip to content

Commit

Permalink
feat!: @remote-ui/core types replaced with alternatives from @omnicaj…
Browse files Browse the repository at this point in the history
…s/vue-remote
  • Loading branch information
cmath10 committed Apr 27, 2024
1 parent 5f362f0 commit c265070
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"release:patch": "standard-version --release-as patch"
},
"dependencies": {
"@remote-ui/core": "^2.2.4",
"@omnicajs/vue-remote": "^0.1.3",
"@remote-ui/rpc": "^1.4.5"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions types/endpoint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import type {
None,
} from './scaffolding'

import type { RemoteChannel } from '@remote-ui/core'
import type { Channel } from '@omnicajs/vue-remote/host'
import type { Endpoint as RemoteEndpoint } from '@remote-ui/rpc'

export interface EndpointApi<
PageApi extends Record<string, AnyFunction> = None
> {
run (channel: RemoteChannel, api: PageApi): Promise<void>;
run (channel: Channel, api: PageApi): Promise<void>;
release (): void;
}

Expand Down
7 changes: 7 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"

"@omnicajs/vue-remote@^0.1.3":
version "0.1.3"
resolved "https://registry.yarnpkg.com/@omnicajs/vue-remote/-/vue-remote-0.1.3.tgz#bc747ea353e923e2934a71585edd33a82488d1ed"
integrity sha512-qBz5Z/ItfewbJp58WS9QdPh51ee3khtuW81nHIa+NG3GDch9wsNaQGjr6pqbeKWJ543gaYNoIyMq5yszb2Tvog==
dependencies:
"@remote-ui/rpc" "^1.4.5"

"@remote-ui/core@^2.2.4":
version "2.2.4"
resolved "https://registry.yarnpkg.com/@remote-ui/core/-/core-2.2.4.tgz#56b174b6f041c57d5950811e6f93cfcffb0fbc1a"
Expand Down

0 comments on commit c265070

Please sign in to comment.