@automagik/omni 2.260405.1 → 2.260405.2
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 +1 -1
- package/dist/server/index.js +12 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -76887,7 +76887,7 @@ import { fileURLToPath } from "url";
|
|
|
76887
76887
|
// package.json
|
|
76888
76888
|
var package_default = {
|
|
76889
76889
|
name: "@automagik/omni",
|
|
76890
|
-
version: "2.260405.
|
|
76890
|
+
version: "2.260405.2",
|
|
76891
76891
|
description: "LLM-optimized CLI for Omni",
|
|
76892
76892
|
type: "module",
|
|
76893
76893
|
bin: {
|
package/dist/server/index.js
CHANGED
|
@@ -196747,6 +196747,11 @@ var init_sdk2 = __esm(() => {
|
|
|
196747
196747
|
var init_esm4 = __esm(() => {
|
|
196748
196748
|
init_http3();
|
|
196749
196749
|
init_node_fetch2();
|
|
196750
|
+
init_postgres();
|
|
196751
|
+
init_hono();
|
|
196752
|
+
init_openai2();
|
|
196753
|
+
init_anthropic_ai2();
|
|
196754
|
+
init_google_genai2();
|
|
196750
196755
|
init_sdk2();
|
|
196751
196756
|
init_tracing3();
|
|
196752
196757
|
init_esm();
|
|
@@ -222788,7 +222793,7 @@ var init_sentry_scrub = __esm(() => {
|
|
|
222788
222793
|
var require_package8 = __commonJS((exports, module) => {
|
|
222789
222794
|
module.exports = {
|
|
222790
222795
|
name: "@omni/api",
|
|
222791
|
-
version: "2.260405.
|
|
222796
|
+
version: "2.260405.2",
|
|
222792
222797
|
type: "module",
|
|
222793
222798
|
exports: {
|
|
222794
222799
|
".": {
|
|
@@ -222871,7 +222876,12 @@ var init_instrument2 = __esm(() => {
|
|
|
222871
222876
|
query_string: false,
|
|
222872
222877
|
cookies: false
|
|
222873
222878
|
}
|
|
222874
|
-
})
|
|
222879
|
+
}),
|
|
222880
|
+
honoIntegration(),
|
|
222881
|
+
anthropicAIIntegration(),
|
|
222882
|
+
openAIIntegration(),
|
|
222883
|
+
googleGenAIIntegration(),
|
|
222884
|
+
postgresIntegration()
|
|
222875
222885
|
],
|
|
222876
222886
|
beforeSend(event) {
|
|
222877
222887
|
return scrubEvent(event);
|