@vibes.diy/call-ai-v2 2.0.0-dev-cli-5 → 2.0.0-dev-cli-6
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/data-stream.d.ts +6 -6
- package/package.json +1 -1
package/data-stream.d.ts
CHANGED
|
@@ -42,12 +42,6 @@ export declare const DataStreamMsg: import("arktype/internal/variants/object.ts"
|
|
|
42
42
|
json: unknown;
|
|
43
43
|
dataLineNr: number;
|
|
44
44
|
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
45
|
-
} | {
|
|
46
|
-
type: "data.error";
|
|
47
|
-
streamId: string;
|
|
48
|
-
message: string;
|
|
49
|
-
dataLineNr: number;
|
|
50
|
-
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
51
45
|
} | {
|
|
52
46
|
type: "data.end";
|
|
53
47
|
streamId: string;
|
|
@@ -60,6 +54,12 @@ export declare const DataStreamMsg: import("arktype/internal/variants/object.ts"
|
|
|
60
54
|
dataLineNr: number;
|
|
61
55
|
};
|
|
62
56
|
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
57
|
+
} | {
|
|
58
|
+
type: "data.error";
|
|
59
|
+
streamId: string;
|
|
60
|
+
message: string;
|
|
61
|
+
dataLineNr: number;
|
|
62
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
63
63
|
}, {}>;
|
|
64
64
|
export type DataBeginMsg = typeof DataBeginMsg.infer;
|
|
65
65
|
export type DataLineMsg = typeof DataLineMsg.infer;
|