@tessl/cli 0.26.0 → 0.28.0
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/bundle.mjs +681 -641
- package/dist/cli.d.ts +2 -2
- package/package.json +7 -1
package/dist/cli.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ declare const netSchema: _sinclair_typebox.TObject<{
|
|
|
53
53
|
TESSL_LLM_API_KEY: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
54
54
|
TESSL_LLM_BASE_URL: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
55
55
|
TESSL_DISABLE_LLM_CACHE: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"true">, _sinclair_typebox.TLiteral<"false">]>>;
|
|
56
|
+
ENABLE_RECOMMEND_SPECS: _sinclair_typebox.TOptional<_sinclair_typebox.TLiteral<"true">>;
|
|
56
57
|
}>;
|
|
57
58
|
type NetEnv = Static<typeof netSchema>;
|
|
58
59
|
|
|
@@ -3705,11 +3706,10 @@ interface Reporter {
|
|
|
3705
3706
|
declare function htmlDomToMarkdown(dom: HTMLElement): string;
|
|
3706
3707
|
|
|
3707
3708
|
type SpecDom = HTMLElement;
|
|
3708
|
-
type TestKind = 'locked' | 'draft';
|
|
3709
3709
|
interface SpecTestDefinition {
|
|
3710
3710
|
path: string;
|
|
3711
3711
|
sourceLines?: string;
|
|
3712
|
-
|
|
3712
|
+
locked: boolean;
|
|
3713
3713
|
}
|
|
3714
3714
|
declare function specFromMarkdown(md: string): SpecDom;
|
|
3715
3715
|
declare function getApi(specDom: SpecDom): string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tessl/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Command line interface and MCP server for using Tessl",
|
|
5
5
|
"types": "dist/cli.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -26,6 +26,12 @@
|
|
|
26
26
|
"pino": "9.13.1",
|
|
27
27
|
"pino-pretty": "13.0.0",
|
|
28
28
|
"pino-opentelemetry-transport": "1.0.1",
|
|
29
|
+
"otlp-logger": "1.1.12",
|
|
30
|
+
"@opentelemetry/api-logs": "0.204.0",
|
|
31
|
+
"@opentelemetry/sdk-logs": "0.204.0",
|
|
32
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "0.204.0",
|
|
33
|
+
"@opentelemetry/exporter-logs-otlp-http": "0.204.0",
|
|
34
|
+
"@opentelemetry/exporter-logs-otlp-proto": "0.204.0",
|
|
29
35
|
"@opentelemetry/otlp-transformer": "0.204.0",
|
|
30
36
|
"@opentelemetry/semantic-conventions": "1.36.0",
|
|
31
37
|
"@opentelemetry/sdk-metrics": "2.1.0",
|