@databutton/firebase-types 1.59.23 → 1.60.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.
|
@@ -269,6 +269,24 @@ export interface Step {
|
|
|
269
269
|
state: StepState;
|
|
270
270
|
lastModifiedAt: Timestamp;
|
|
271
271
|
}
|
|
272
|
+
export interface NotebookCell {
|
|
273
|
+
id: string;
|
|
274
|
+
type: "code";
|
|
275
|
+
sequence: number;
|
|
276
|
+
description: string;
|
|
277
|
+
code: string;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Notebooks are tied to capabilities. One capability can have multiple notebooks.
|
|
281
|
+
* Each notebook can have one thread.
|
|
282
|
+
* For usage with AI agents this is important as the cells are tightly coupled to the thread/conversatino.
|
|
283
|
+
*/
|
|
284
|
+
export interface Notebook {
|
|
285
|
+
createdBy: PerformedBy;
|
|
286
|
+
cells: NotebookCell[];
|
|
287
|
+
capabilityRef: string | null;
|
|
288
|
+
threadRef: string | null;
|
|
289
|
+
}
|
|
272
290
|
export declare enum CapabilityBuildStage {
|
|
273
291
|
PROTOTYPE = "prototype",
|
|
274
292
|
ITERATE = "iterate"
|