@mml-io/3d-web-experience-client 0.0.0-experimental-2be945e-20250910 → 0.0.0-experimental-6a97774-20250917

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.
@@ -19,10 +19,12 @@ type MMLDocumentConfiguration = {
19
19
  y: number;
20
20
  z: number;
21
21
  };
22
+ passAuthToken?: boolean;
22
23
  };
23
24
  export type Networked3dWebExperienceClientConfig = {
24
25
  userNetworkAddress: string;
25
26
  sessionToken: string;
27
+ authToken?: string | null;
26
28
  chatVisibleByDefault?: boolean;
27
29
  userNameToColorOptions?: StringToHslOptions;
28
30
  animationConfig: AnimationConfig;
@@ -61,7 +63,7 @@ export declare class Networked3dWebExperienceClient {
61
63
  private keyInputManager;
62
64
  private virtualJoystick;
63
65
  private mmlCompositionScene;
64
- private mmlFrames;
66
+ private mmlDocumentStates;
65
67
  private clientId;
66
68
  private networkClient;
67
69
  private remoteUserStates;
@@ -96,8 +98,8 @@ export declare class Networked3dWebExperienceClient {
96
98
  private disposeWithError;
97
99
  dispose(): void;
98
100
  private setupMMLScene;
99
- private createFrame;
100
- private updateFrameAttributes;
101
+ private createMMLDocument;
102
+ private updateMMLDocumentAttributes;
101
103
  private setMMLDocuments;
102
104
  }
103
105
  export {};