@ceralive/cerastream 2026.9.6 → 2026.9.7
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/messages.d.ts +1 -1
- package/dist/messages.js +1 -1
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -176,7 +176,7 @@ export type SetBitrateResult = z.infer<typeof setBitrateResultSchema>;
|
|
|
176
176
|
export declare const requestKeyframeParamsSchema: z.ZodObject<{}, z.core.$strip>;
|
|
177
177
|
export type RequestKeyframeParams = z.infer<typeof requestKeyframeParamsSchema>;
|
|
178
178
|
export declare const requestKeyframeResultSchema: z.ZodObject<{
|
|
179
|
-
applied: z.
|
|
179
|
+
applied: z.ZodBoolean;
|
|
180
180
|
}, z.core.$strip>;
|
|
181
181
|
export type RequestKeyframeResult = z.infer<typeof requestKeyframeResultSchema>;
|
|
182
182
|
export declare const edidProfileSchema: z.ZodEnum<{
|
package/dist/messages.js
CHANGED
|
@@ -73,7 +73,7 @@ export const setBitrateResultSchema = z.object({
|
|
|
73
73
|
reason: z.string().optional(),
|
|
74
74
|
});
|
|
75
75
|
export const requestKeyframeParamsSchema = z.object({});
|
|
76
|
-
export const requestKeyframeResultSchema = z.object({ applied: z.
|
|
76
|
+
export const requestKeyframeResultSchema = z.object({ applied: z.boolean() });
|
|
77
77
|
// ---- 4b. hdmirx.setEdidProfile (additive, 0.17.0; not in V1_METHODS) ----
|
|
78
78
|
// The operator picks a named POLICY, never a blob: an EDID is a checksummed
|
|
79
79
|
// 256-byte structure whose contents the device owns.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceralive/cerastream",
|
|
3
|
-
"version": "2026.9.
|
|
3
|
+
"version": "2026.9.7",
|
|
4
4
|
"description": "Type-safe TypeScript schema + IPC client for the cerastream streaming engine (JSON-RPC 2.0 / NDJSON over a Unix domain socket).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|