@oh-my-pi/pi-wire 16.1.1 → 16.1.3
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/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -359,7 +359,7 @@ export type WireFrame = GuestFrame | HostFrame;
|
|
|
359
359
|
/** Wire protocol version carried in `hello`; the host rejects mismatches. */
|
|
360
360
|
export declare const COLLAB_PROTO = 1;
|
|
361
361
|
/** Parameter key used for intent tracing (e.g. prompt explanation/reasoning) */
|
|
362
|
-
export declare const INTENT_FIELD = "
|
|
362
|
+
export declare const INTENT_FIELD = "i";
|
|
363
363
|
/** Plaintext envelope prefix: `[4B uint32 BE peerId][sealed payload]`. */
|
|
364
364
|
export declare const ENVELOPE_HEADER_LENGTH = 4;
|
|
365
365
|
export declare const ROOM_ID_BYTES = 16;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -346,7 +346,7 @@ export type WireFrame = GuestFrame | HostFrame;
|
|
|
346
346
|
export const COLLAB_PROTO = 1;
|
|
347
347
|
|
|
348
348
|
/** Parameter key used for intent tracing (e.g. prompt explanation/reasoning) */
|
|
349
|
-
export const INTENT_FIELD = "
|
|
349
|
+
export const INTENT_FIELD = "i";
|
|
350
350
|
|
|
351
351
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
352
352
|
// Envelope & link constants
|