@kvell007/embed-labs-protocol 0.1.0-alpha.43 → 0.1.0-alpha.45
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.d.ts +17 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -578,6 +578,23 @@ export interface BoardKnowledgeFile {
|
|
|
578
578
|
content_base64: string;
|
|
579
579
|
observed_at: string;
|
|
580
580
|
}
|
|
581
|
+
export interface BoardKnowledgeSearchMatch {
|
|
582
|
+
source: BoardKnowledgeSource;
|
|
583
|
+
path: string;
|
|
584
|
+
title: string;
|
|
585
|
+
content_type: string;
|
|
586
|
+
sha256: string;
|
|
587
|
+
score: number;
|
|
588
|
+
excerpt: string;
|
|
589
|
+
}
|
|
590
|
+
export interface BoardKnowledgeSearchResult {
|
|
591
|
+
template_id: string;
|
|
592
|
+
board_id: string;
|
|
593
|
+
variant_id: string;
|
|
594
|
+
query: string;
|
|
595
|
+
matches: BoardKnowledgeSearchMatch[];
|
|
596
|
+
observed_at: string;
|
|
597
|
+
}
|
|
581
598
|
export type BoardServerMethodOperation = "workspace.provision" | "source.list" | "source.read" | "source.write" | "app.build" | "app.compile" | "image.build" | "artifact.download" | "workspace.release" | "monitor.capabilities" | "monitor.status" | "monitor.gpio.read" | "monitor.gpio.write" | "monitor.uart.write" | "monitor.i2c.transfer" | "monitor.spi.transfer" | "monitor.logic.capture" | "monitor.logic.decode" | "monitor.wifi.manage" | "monitor.probe.debug" | "monitor.firmware.flash" | "initial_firmware.flash" | "flash.plan" | "flash.run";
|
|
582
599
|
export type ProductAccessTier = "free_registered" | "paid_resource" | "paid_managed_model";
|
|
583
600
|
export interface BoardServerMethodSummary {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAwrDA,MAAM,UAAU,EAAE,CAAI,IAAO;IAC3B,OAAO,EAAE,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;AAC5B,CAAC;AAED,MAAM,UAAU,IAAI,CAAC,IAAY,EAAE,OAAe,EAAE,UAAmD,EAAE;IACvG,OAAO,EAAE,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,OAAO,EAAE,EAAE,CAAC;AAC7D,CAAC"}
|
package/package.json
CHANGED