bump: api package and its dependencies version

Re-export client types in @kksh/api root package
This commit is contained in:
Huakun Shen 2025-01-06 03:04:58 -05:00
parent 6ce27244a5
commit f48484f476
No known key found for this signature in database
29 changed files with 108 additions and 14 deletions

View File

@ -1,5 +1,12 @@
# kksh # kksh
## 0.0.27
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.26 ## 0.0.26
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"name": "kksh", "name": "kksh",
"module": "dist/cli.js", "module": "dist/cli.js",
"version": "0.0.26", "version": "0.0.27",
"type": "module", "type": "module",
"bin": { "bin": {
"kksh": "./dist/cli.js", "kksh": "./dist/cli.js",

View File

@ -1,5 +1,12 @@
# create-kunkun # create-kunkun
## 0.1.37
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.1.36 ## 0.1.36
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"name": "create-kunkun", "name": "create-kunkun",
"type": "module", "type": "module",
"version": "0.1.36", "version": "0.1.37",
"bin": { "bin": {
"create-kunkun": "dist/index.mjs" "create-kunkun": "dist/index.mjs"
}, },

View File

@ -1,5 +1,11 @@
# @kksh/api # @kksh/api
## 0.0.48
### Patch Changes
- Restructure api package, add headless api
## 0.0.47 ## 0.0.47
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@kksh/api", "name": "@kksh/api",
"version": "0.0.47", "version": "0.0.48",
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@ -167,6 +167,9 @@ export interface IDb {
update: typeof JarvisExtDB.prototype.update update: typeof JarvisExtDB.prototype.update
} }
/**
* A key-value store built on top of the Database API (based on sqlite)
*/
export interface IKV { export interface IKV {
get: typeof KV.prototype.get get: typeof KV.prototype.get
set: typeof KV.prototype.set set: typeof KV.prototype.set

View File

@ -8,3 +8,4 @@ export { constructExtensionSupportDir } from "./api/server/path"
export { constructJarvisServerAPIWithPermissions } from "./api/server" export { constructJarvisServerAPIWithPermissions } from "./api/server"
export * from "./constants" export * from "./constants"
export { TauriShellStdio } from "./api/shell" export { TauriShellStdio } from "./api/shell"
export * from "./api/client"

View File

@ -21,7 +21,7 @@ export const breakingChangesVersionCheckpoints = [
const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version) const checkpointVersions = breakingChangesVersionCheckpoints.map((c) => c.version)
const sortedCheckpointVersions = sort(checkpointVersions) const sortedCheckpointVersions = sort(checkpointVersions)
export const version = "0.0.47" export const version = "0.0.48"
export function isVersionBetween(v: string, start: string, end: string) { export function isVersionBetween(v: string, start: string, end: string) {
const vCleaned = clean(v) const vCleaned = clean(v)

View File

@ -1,5 +1,12 @@
# demo-template-extension # demo-template-extension
## 0.0.5
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.4 ## 0.0.4
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "../../schema/manifest-json-schema.json", "$schema": "../../schema/manifest-json-schema.json",
"name": "demo-template-extension", "name": "demo-template-extension",
"version": "0.0.4", "version": "0.0.5",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "Demo Template Extension", "name": "Demo Template Extension",

View File

@ -1,5 +1,12 @@
# template-ext-sveltekit # template-ext-sveltekit
## 0.0.5
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.4 ## 0.0.4
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.kunkun.sh", "$schema": "https://schema.kunkun.sh",
"name": "ext-sveltekit-exp", "name": "ext-sveltekit-exp",
"version": "0.0.4", "version": "0.0.5",
"private": true, "private": true,
"kunkun": { "kunkun": {
"name": "TODO: Change Display Name", "name": "TODO: Change Display Name",

View File

@ -1,5 +1,12 @@
# form-view # form-view
## 0.0.4
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.3 ## 0.0.3
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.kunkun.sh", "$schema": "https://schema.kunkun.sh",
"name": "form-view", "name": "form-view",
"version": "0.0.3", "version": "0.0.4",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "Form View", "name": "Form View",

View File

@ -1,5 +1,12 @@
# template-ext-next # template-ext-next
## 0.1.3
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-next", "name": "template-ext-next",
"version": "0.1.2", "version": "0.1.3",
"private": true, "private": true,
"kunkun": { "kunkun": {
"name": "TODO: Change Display Name", "name": "TODO: Change Display Name",

View File

@ -1,5 +1,12 @@
# template-ext-nuxt # template-ext-nuxt
## 0.0.5
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.4 ## 0.0.4
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-nuxt", "name": "template-ext-nuxt",
"version": "0.0.4", "version": "0.0.5",
"private": true, "private": true,
"type": "module", "type": "module",
"kunkun": { "kunkun": {

View File

@ -1,5 +1,12 @@
# template-ext-react # template-ext-react
## 0.0.4
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.3 ## 0.0.3
### Patch Changes ### Patch Changes

View File

@ -2,7 +2,7 @@
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-react", "name": "template-ext-react",
"private": true, "private": true,
"version": "0.0.3", "version": "0.0.4",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "TODO: Change Display Name", "name": "TODO: Change Display Name",

View File

@ -1,5 +1,12 @@
# template-ext-svelte # template-ext-svelte
## 0.0.4
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.3 ## 0.0.3
### Patch Changes ### Patch Changes

View File

@ -2,7 +2,7 @@
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-svelte", "name": "template-ext-svelte",
"private": true, "private": true,
"version": "0.0.3", "version": "0.0.4",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "TODO: Change Display Name", "name": "TODO: Change Display Name",

View File

@ -1,5 +1,12 @@
# template-ext-sveltekit # template-ext-sveltekit
## 0.0.5
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.4 ## 0.0.4
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-sveltekit", "name": "template-ext-sveltekit",
"version": "0.0.4", "version": "0.0.5",
"private": true, "private": true,
"kunkun": { "kunkun": {
"name": "TODO: Change Display Name", "name": "TODO: Change Display Name",

View File

@ -1,5 +1,12 @@
# template-ext-vue # template-ext-vue
## 0.0.2
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.1 ## 0.0.1
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"name": "template-ext-vue", "name": "template-ext-vue",
"private": true, "private": true,
"version": "0.0.1", "version": "0.0.2",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -1,5 +1,12 @@
# template-ext-worker # template-ext-worker
## 0.0.4
### Patch Changes
- Updated dependencies
- @kksh/api@0.0.48
## 0.0.3 ## 0.0.3
### Patch Changes ### Patch Changes

View File

@ -1,7 +1,7 @@
{ {
"$schema": "./node_modules/@kksh/api/dist/schema.json", "$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-worker", "name": "template-ext-worker",
"version": "0.0.3", "version": "0.0.4",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "TODO: Extension Display Name", "name": "TODO: Extension Display Name",