@automagik/omni 2.260223.1 → 2.260223.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/commands/auth.d.ts +1 -0
- package/dist/commands/auth.d.ts.map +1 -1
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/providers-setup.d.ts +16 -0
- package/dist/commands/providers-setup.d.ts.map +1 -0
- package/dist/commands/providers.d.ts +1 -0
- package/dist/commands/providers.d.ts.map +1 -1
- package/dist/index.js +619 -84
- package/dist/server/index.js +577 -504
- package/dist/utils/keys.d.ts +11 -0
- package/dist/utils/keys.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/commands/auth.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../src/commands/auth.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../src/commands/auth.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsQpC,wBAAgB,iBAAiB,IAAI,OAAO,CAiI3C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../src/commands/install.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAMH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../src/commands/install.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAMH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA+jBpC,wBAAgB,oBAAoB,IAAI,OAAO,CAO9C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provider Setup Commands
|
|
3
|
+
*
|
|
4
|
+
* omni providers setup openclaw
|
|
5
|
+
* --gateway-url <url>
|
|
6
|
+
* --gateway-token <token>
|
|
7
|
+
* --agent-id <agentId>
|
|
8
|
+
* [--name <name>]
|
|
9
|
+
* [--non-interactive]
|
|
10
|
+
*
|
|
11
|
+
* Single command that takes gateway URL + token + agent ID
|
|
12
|
+
* and produces a fully working OpenClaw provider with device identity.
|
|
13
|
+
*/
|
|
14
|
+
import { Command } from 'commander';
|
|
15
|
+
export declare function createSetupCommand(): Command;
|
|
16
|
+
//# sourceMappingURL=providers-setup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"providers-setup.d.ts","sourceRoot":"","sources":["../../src/commands/providers-setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAKH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA2bpC,wBAAgB,kBAAkB,IAAI,OAAO,CAgD5C"}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* omni providers create --name <name> --schema <schema> --base-url <url> [--api-key <key>]
|
|
7
7
|
* Claude Code: --project-path <path> [--max-turns <n>] [--permission-mode <mode>]
|
|
8
8
|
* OpenClaw: --default-agent-id <id>
|
|
9
|
+
* omni providers setup openclaw --gateway-url <url> --gateway-token <token> --agent-id <id>
|
|
9
10
|
* omni providers agents <id>
|
|
10
11
|
* omni providers teams <id>
|
|
11
12
|
* omni providers workflows <id>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["../../src/commands/providers.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["../../src/commands/providers.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAyFpC,wBAAgB,sBAAsB,IAAI,OAAO,CAiPhD"}
|