@automagik/omni 2.260424.3 → 2.260427.1
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/dist/index.js +13 -2
- package/dist/sdk/client.d.ts +2086 -0
- package/dist/sdk/client.d.ts.map +1 -0
- package/dist/sdk/errors.d.ts +35 -0
- package/dist/sdk/errors.d.ts.map +1 -0
- package/dist/sdk/index.d.ts +31 -0
- package/dist/sdk/index.d.ts.map +1 -0
- package/dist/sdk/index.js +2199 -0
- package/dist/sdk/types.generated.d.ts +16665 -0
- package/dist/sdk/types.generated.d.ts.map +1 -0
- package/dist/server/index.js +61 -4
- package/package.json +22 -11
package/dist/index.js
CHANGED
|
@@ -113929,7 +113929,7 @@ import { fileURLToPath } from "url";
|
|
|
113929
113929
|
// package.json
|
|
113930
113930
|
var package_default = {
|
|
113931
113931
|
name: "@automagik/omni",
|
|
113932
|
-
version: "2.
|
|
113932
|
+
version: "2.260427.1",
|
|
113933
113933
|
description: "LLM-optimized CLI for Omni",
|
|
113934
113934
|
type: "module",
|
|
113935
113935
|
bin: {
|
|
@@ -113937,12 +113937,23 @@ var package_default = {
|
|
|
113937
113937
|
},
|
|
113938
113938
|
main: "dist/index.js",
|
|
113939
113939
|
types: "dist/index.d.ts",
|
|
113940
|
+
exports: {
|
|
113941
|
+
".": {
|
|
113942
|
+
types: "./dist/index.d.ts",
|
|
113943
|
+
import: "./dist/index.js"
|
|
113944
|
+
},
|
|
113945
|
+
"./sdk": {
|
|
113946
|
+
types: "./dist/sdk/index.d.ts",
|
|
113947
|
+
import: "./dist/sdk/index.js"
|
|
113948
|
+
}
|
|
113949
|
+
},
|
|
113940
113950
|
files: ["dist", "bin", "db"],
|
|
113941
113951
|
publishConfig: {
|
|
113942
113952
|
access: "public"
|
|
113943
113953
|
},
|
|
113944
113954
|
scripts: {
|
|
113945
|
-
build: "bun build ./src/index.ts --outdir ./dist --target bun && bun run build:types",
|
|
113955
|
+
build: "bun run build:sdk-subpath && bun build ./src/index.ts --outdir ./dist --target bun && bun run build:types",
|
|
113956
|
+
"build:sdk-subpath": "cd ../sdk && bun run build && cd ../cli && mkdir -p ./dist/sdk && cp -r ../sdk/dist/. ./dist/sdk/",
|
|
113946
113957
|
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
113947
113958
|
dev: "echo 'CLI package - no dev server (use: bun run ./src/index.ts <command>)'",
|
|
113948
113959
|
typecheck: "tsc --noEmit",
|