@lotics/cli 0.88.0 → 0.89.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/render_page.js +100 -100
- package/dist/src/cli.js +162 -100
- package/dist/{client.d.ts → src/client.d.ts} +9 -1
- package/dist/src/package_content_types.d.ts +70 -0
- package/dist/src/package_content_types.js +12 -0
- package/package.json +2 -2
- package/dist/app_commands.d.ts +0 -401
- package/dist/app_commands.js +0 -1520
- package/dist/app_commands.test.d.ts +0 -1
- package/dist/app_commands.test.js +0 -898
- package/dist/app_workflow_check.d.ts +0 -77
- package/dist/app_workflow_check.js +0 -169
- package/dist/app_workflow_check.test.d.ts +0 -1
- package/dist/app_workflow_check.test.js +0 -166
- package/dist/args.d.ts +0 -42
- package/dist/args.js +0 -121
- package/dist/args.test.d.ts +0 -1
- package/dist/args.test.js +0 -88
- package/dist/child_env.d.ts +0 -13
- package/dist/child_env.js +0 -24
- package/dist/cli.d.ts +0 -2
- package/dist/cli.js +0 -1095
- package/dist/cli_dispatch.test.d.ts +0 -1
- package/dist/cli_dispatch.test.js +0 -89
- package/dist/client.test.d.ts +0 -1
- package/dist/client.test.js +0 -47
- package/dist/config.d.ts +0 -124
- package/dist/config.js +0 -315
- package/dist/config.test.d.ts +0 -1
- package/dist/config.test.js +0 -319
- package/dist/dev/file_relay.d.ts +0 -39
- package/dist/dev/file_relay.js +0 -87
- package/dist/dev/file_relay.test.d.ts +0 -1
- package/dist/dev/file_relay.test.js +0 -87
- package/dist/dev/rpc_handler.d.ts +0 -21
- package/dist/dev/rpc_handler.js +0 -166
- package/dist/dev/rpc_handler.test.d.ts +0 -1
- package/dist/dev/rpc_handler.test.js +0 -107
- package/dist/dev/server.d.ts +0 -75
- package/dist/dev/server.js +0 -443
- package/dist/dev/upload_relay.d.ts +0 -36
- package/dist/dev/upload_relay.js +0 -61
- package/dist/dev/upload_relay.test.d.ts +0 -1
- package/dist/dev/upload_relay.test.js +0 -76
- package/dist/dev/wrapper_page.d.ts +0 -40
- package/dist/dev/wrapper_page.js +0 -335
- package/dist/docx.d.ts +0 -2
- package/dist/docx.js +0 -341
- package/dist/docx.test.d.ts +0 -1
- package/dist/docx.test.js +0 -145
- package/dist/file_command_io.d.ts +0 -12
- package/dist/file_command_io.js +0 -34
- package/dist/generate_app_agents_dts.d.ts +0 -16
- package/dist/generate_app_agents_dts.js +0 -62
- package/dist/generate_app_agents_dts.test.d.ts +0 -1
- package/dist/generate_app_agents_dts.test.js +0 -45
- package/dist/generate_app_fields.d.ts +0 -56
- package/dist/generate_app_fields.js +0 -148
- package/dist/generate_app_fields.test.d.ts +0 -1
- package/dist/generate_app_fields.test.js +0 -108
- package/dist/generate_app_queries_dts.d.ts +0 -21
- package/dist/generate_app_queries_dts.js +0 -57
- package/dist/generate_app_workflows_dts.d.ts +0 -39
- package/dist/generate_app_workflows_dts.js +0 -229
- package/dist/generate_app_workflows_dts.test.d.ts +0 -1
- package/dist/generate_app_workflows_dts.test.js +0 -109
- package/dist/generate_package_fields.d.ts +0 -49
- package/dist/generate_package_fields.js +0 -157
- package/dist/generate_package_fields.test.d.ts +0 -1
- package/dist/generate_package_fields.test.js +0 -59
- package/dist/inputs.d.ts +0 -38
- package/dist/inputs.js +0 -50
- package/dist/inputs.test.d.ts +0 -1
- package/dist/inputs.test.js +0 -89
- package/dist/preview.d.ts +0 -3
- package/dist/preview.js +0 -233
- package/dist/starter_template.d.ts +0 -64
- package/dist/starter_template.js +0 -753
- package/dist/starter_template.test.d.ts +0 -1
- package/dist/starter_template.test.js +0 -115
- package/dist/version.d.ts +0 -1
- package/dist/version.js +0 -6
- package/dist/xlsx.d.ts +0 -2
- package/dist/xlsx.js +0 -489
- package/dist/xlsx.test.d.ts +0 -1
- package/dist/xlsx.test.js +0 -131
- /package/dist/{client.js → src/client.js} +0 -0
package/dist/child_env.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* `NODE_OPTIONS` for a spawned Node child (npm, vite), forcing IPv4-first DNS +
|
|
3
|
-
* a fast Happy-Eyeballs family timeout. The CLI bin applies the equivalent as
|
|
4
|
-
* runtime API calls (cli.ts top-of-module), but a child Node process is a fresh
|
|
5
|
-
* runtime that won't inherit them — so they must travel via the env. Preserves
|
|
6
|
-
* any existing `NODE_OPTIONS`.
|
|
7
|
-
*
|
|
8
|
-
* Why: WSL2 + Node 24's Happy-Eyeballs races IPv4/IPv6 and intermittently stalls
|
|
9
|
-
* on a dead IPv6 route to api.lotics.ai. IPv4-first + a 2s per-family cap fails a
|
|
10
|
-
* bad IPv6 path fast to IPv4. Its own module so `app_commands` and `dev/server`
|
|
11
|
-
* share it without a circular import.
|
|
12
|
-
*/
|
|
13
|
-
export declare function ipv4ChildEnv(env: NodeJS.ProcessEnv): NodeJS.ProcessEnv;
|
package/dist/child_env.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* `NODE_OPTIONS` for a spawned Node child (npm, vite), forcing IPv4-first DNS +
|
|
3
|
-
* a fast Happy-Eyeballs family timeout. The CLI bin applies the equivalent as
|
|
4
|
-
* runtime API calls (cli.ts top-of-module), but a child Node process is a fresh
|
|
5
|
-
* runtime that won't inherit them — so they must travel via the env. Preserves
|
|
6
|
-
* any existing `NODE_OPTIONS`.
|
|
7
|
-
*
|
|
8
|
-
* Why: WSL2 + Node 24's Happy-Eyeballs races IPv4/IPv6 and intermittently stalls
|
|
9
|
-
* on a dead IPv6 route to api.lotics.ai. IPv4-first + a 2s per-family cap fails a
|
|
10
|
-
* bad IPv6 path fast to IPv4. Its own module so `app_commands` and `dev/server`
|
|
11
|
-
* share it without a circular import.
|
|
12
|
-
*/
|
|
13
|
-
export function ipv4ChildEnv(env) {
|
|
14
|
-
return {
|
|
15
|
-
...env,
|
|
16
|
-
NODE_OPTIONS: [
|
|
17
|
-
env.NODE_OPTIONS,
|
|
18
|
-
"--dns-result-order=ipv4first",
|
|
19
|
-
"--network-family-autoselection-attempt-timeout=2000",
|
|
20
|
-
]
|
|
21
|
-
.filter(Boolean)
|
|
22
|
-
.join(" "),
|
|
23
|
-
};
|
|
24
|
-
}
|
package/dist/cli.d.ts
DELETED