@laplace.live/persona-sdk 1.1.0 → 1.2.0
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/wire/methods.d.ts
CHANGED
|
@@ -409,8 +409,6 @@ export interface StageResetTransformRequest {
|
|
|
409
409
|
export type StageResetTransformResponse = EmptyResponse;
|
|
410
410
|
export type StageResetCameraRequest = EmptyRequest;
|
|
411
411
|
export type StageResetCameraResponse = EmptyResponse;
|
|
412
|
-
export type StageShockwaveRequest = EmptyRequest;
|
|
413
|
-
export type StageShockwaveResponse = EmptyResponse;
|
|
414
412
|
export type AppInfoRequest = EmptyRequest;
|
|
415
413
|
export interface AppInfoResponse {
|
|
416
414
|
name: string;
|
|
@@ -923,10 +921,6 @@ export interface MethodMap {
|
|
|
923
921
|
request: StageResetCameraRequest;
|
|
924
922
|
response: StageResetCameraResponse;
|
|
925
923
|
};
|
|
926
|
-
'stage.shockwave': {
|
|
927
|
-
request: StageShockwaveRequest;
|
|
928
|
-
response: StageShockwaveResponse;
|
|
929
|
-
};
|
|
930
924
|
'app.info': {
|
|
931
925
|
request: AppInfoRequest;
|
|
932
926
|
response: AppInfoResponse;
|
package/dist/wire/protocol.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { InjectTarget } from './types.ts';
|
|
2
2
|
/** Bumped on breaking wire changes; the server reports it in `hello` and clients warn on mismatch. */
|
|
3
|
-
export declare const PROTOCOL_VERSION =
|
|
3
|
+
export declare const PROTOCOL_VERSION = 3;
|
|
4
4
|
/** Default port the Persona API server listens on (user-configurable in the app). */
|
|
5
5
|
export declare const DEFAULT_API_PORT = 25034;
|
|
6
6
|
/** Default host clients dial: the server binds loopback unless LAN is opted in. */
|
package/dist/wire/protocol.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Bumped on breaking wire changes; the server reports it in `hello` and clients warn on mismatch. */
|
|
2
|
-
export const PROTOCOL_VERSION =
|
|
2
|
+
export const PROTOCOL_VERSION = 3;
|
|
3
3
|
/** Default port the Persona API server listens on (user-configurable in the app). */
|
|
4
4
|
export const DEFAULT_API_PORT = 25034;
|
|
5
5
|
/** Default host clients dial: the server binds loopback unless LAN is opted in. */
|