@automagik/omni 2.260422.7 → 2.260422.8
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 -8
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -113803,7 +113803,7 @@ import { fileURLToPath } from "url";
|
|
|
113803
113803
|
// package.json
|
|
113804
113804
|
var package_default = {
|
|
113805
113805
|
name: "@automagik/omni",
|
|
113806
|
-
version: "2.260422.
|
|
113806
|
+
version: "2.260422.8",
|
|
113807
113807
|
description: "LLM-optimized CLI for Omni",
|
|
113808
113808
|
type: "module",
|
|
113809
113809
|
bin: {
|
package/dist/server/index.js
CHANGED
|
@@ -224451,7 +224451,7 @@ var init_sentry_scrub = __esm(() => {
|
|
|
224451
224451
|
var require_package8 = __commonJS((exports, module) => {
|
|
224452
224452
|
module.exports = {
|
|
224453
224453
|
name: "@omni/api",
|
|
224454
|
-
version: "2.260422.
|
|
224454
|
+
version: "2.260422.8",
|
|
224455
224455
|
type: "module",
|
|
224456
224456
|
exports: {
|
|
224457
224457
|
".": {
|
|
@@ -298702,6 +298702,7 @@ var init_keys = __esm(() => {
|
|
|
298702
298702
|
init_dist2();
|
|
298703
298703
|
init_zod();
|
|
298704
298704
|
init_resolve_profile();
|
|
298705
|
+
init_date_query();
|
|
298705
298706
|
keysRoutes = new Hono2;
|
|
298706
298707
|
NON_ADMIN_PROFILES = ["cs", "personal", "scout", "coworker"];
|
|
298707
298708
|
profileOverridesSchema = exports_external.object({
|
|
@@ -298742,8 +298743,8 @@ var init_keys = __esm(() => {
|
|
|
298742
298743
|
limit: exports_external.coerce.number().int().min(1).max(100).default(50).describe("Max results")
|
|
298743
298744
|
});
|
|
298744
298745
|
auditQuerySchema = exports_external.object({
|
|
298745
|
-
since:
|
|
298746
|
-
until:
|
|
298746
|
+
since: optionalDateParam("since").describe("Filter logs from this timestamp"),
|
|
298747
|
+
until: optionalDateParam("until").describe("Filter logs until this timestamp"),
|
|
298747
298748
|
path: exports_external.string().optional().describe("Filter by request path (partial match)"),
|
|
298748
298749
|
statusCode: exports_external.coerce.number().int().optional().describe("Filter by HTTP status code"),
|
|
298749
298750
|
limit: exports_external.coerce.number().int().min(1).max(100).default(50).describe("Max results"),
|
|
@@ -299525,6 +299526,7 @@ var init_messages5 = __esm(() => {
|
|
|
299525
299526
|
init_dist2();
|
|
299526
299527
|
init_zod();
|
|
299527
299528
|
init_sentry_scrub();
|
|
299529
|
+
init_date_query();
|
|
299528
299530
|
init_api_keys();
|
|
299529
299531
|
init_media_storage();
|
|
299530
299532
|
log101 = createLogger("routes:messages");
|
|
@@ -299553,8 +299555,8 @@ var init_messages5 = __esm(() => {
|
|
|
299553
299555
|
status: exports_external.string().optional().transform((v2) => v2?.split(",")),
|
|
299554
299556
|
hasMedia: exports_external.coerce.boolean().optional(),
|
|
299555
299557
|
senderPersonId: exports_external.string().uuid().optional(),
|
|
299556
|
-
since:
|
|
299557
|
-
until:
|
|
299558
|
+
since: optionalDateParam("since"),
|
|
299559
|
+
until: optionalDateParam("until"),
|
|
299558
299560
|
search: exports_external.string().optional(),
|
|
299559
299561
|
includeHidden: exports_external.coerce.boolean().default(false),
|
|
299560
299562
|
limit: exports_external.coerce.number().int().min(1).max(100).default(50),
|
|
@@ -301170,6 +301172,7 @@ var init_persons3 = __esm(() => {
|
|
|
301170
301172
|
init_dist6();
|
|
301171
301173
|
init_dist2();
|
|
301172
301174
|
init_zod();
|
|
301175
|
+
init_date_query();
|
|
301173
301176
|
personsRoutes = new Hono2;
|
|
301174
301177
|
listQuerySchema14 = exports_external.object({
|
|
301175
301178
|
search: exports_external.string().min(1).optional().describe("Search term (name, email, or phone)"),
|
|
@@ -301178,8 +301181,8 @@ var init_persons3 = __esm(() => {
|
|
|
301178
301181
|
});
|
|
301179
301182
|
timelineQuerySchema2 = exports_external.object({
|
|
301180
301183
|
channels: exports_external.string().optional().transform((v2) => v2?.split(",")),
|
|
301181
|
-
since:
|
|
301182
|
-
until:
|
|
301184
|
+
since: optionalDateParam("since"),
|
|
301185
|
+
until: optionalDateParam("until"),
|
|
301183
301186
|
limit: exports_external.coerce.number().int().min(1).max(100).default(50),
|
|
301184
301187
|
cursor: exports_external.string().optional()
|
|
301185
301188
|
});
|
|
@@ -301494,6 +301497,7 @@ var init_settings3 = __esm(() => {
|
|
|
301494
301497
|
init_dist6();
|
|
301495
301498
|
init_dist2();
|
|
301496
301499
|
init_zod();
|
|
301500
|
+
init_date_query();
|
|
301497
301501
|
settingsRoutes = new Hono2;
|
|
301498
301502
|
listQuerySchema16 = exports_external.object({
|
|
301499
301503
|
category: exports_external.string().optional()
|
|
@@ -301508,7 +301512,7 @@ var init_settings3 = __esm(() => {
|
|
|
301508
301512
|
});
|
|
301509
301513
|
historyQuerySchema = exports_external.object({
|
|
301510
301514
|
limit: exports_external.coerce.number().int().min(1).max(100).default(50),
|
|
301511
|
-
since:
|
|
301515
|
+
since: optionalDateParam("since")
|
|
301512
301516
|
});
|
|
301513
301517
|
settingsRoutes.get("/", zValidator("query", listQuerySchema16), async (c) => {
|
|
301514
301518
|
const { category } = c.req.valid("query");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automagik/omni",
|
|
3
|
-
"version": "2.260422.
|
|
3
|
+
"version": "2.260422.8",
|
|
4
4
|
"description": "LLM-optimized CLI for Omni",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"qrcode-terminal": "^0.12.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@omni/api": "2.260422.
|
|
40
|
-
"@omni/channel-discord": "2.260422.
|
|
41
|
-
"@omni/channel-sdk": "2.260422.
|
|
42
|
-
"@omni/channel-slack": "2.260422.
|
|
43
|
-
"@omni/channel-telegram": "2.260422.
|
|
44
|
-
"@omni/channel-whatsapp": "2.260422.
|
|
45
|
-
"@omni/core": "2.260422.
|
|
46
|
-
"@omni/sdk": "2.260422.
|
|
39
|
+
"@omni/api": "2.260422.7",
|
|
40
|
+
"@omni/channel-discord": "2.260422.7",
|
|
41
|
+
"@omni/channel-sdk": "2.260422.7",
|
|
42
|
+
"@omni/channel-slack": "2.260422.7",
|
|
43
|
+
"@omni/channel-telegram": "2.260422.7",
|
|
44
|
+
"@omni/channel-whatsapp": "2.260422.7",
|
|
45
|
+
"@omni/core": "2.260422.7",
|
|
46
|
+
"@omni/sdk": "2.260422.7",
|
|
47
47
|
"@types/node": "^22.10.3",
|
|
48
48
|
"@types/qrcode-terminal": "^0.12.2",
|
|
49
49
|
"typescript": "^5.7.3"
|