@mentra/sdk 1.1.19 → 2.0.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/README.md +4 -4
- package/dist/{tpa → app}/index.d.ts.map +1 -1
- package/dist/{tpa → app}/index.js +2 -2
- package/dist/{tpa → app}/server/index.d.ts +21 -21
- package/dist/app/server/index.d.ts.map +1 -0
- package/dist/{tpa → app}/server/index.js +21 -21
- package/dist/{tpa → app}/session/api-client.d.ts +1 -1
- package/dist/{tpa → app}/session/api-client.d.ts.map +1 -1
- package/dist/{tpa → app}/session/api-client.js +2 -2
- package/dist/{tpa → app}/session/dashboard.d.ts +9 -9
- package/dist/{tpa → app}/session/dashboard.d.ts.map +1 -1
- package/dist/{tpa → app}/session/dashboard.js +10 -10
- package/dist/{tpa → app}/session/events.d.ts +1 -1
- package/dist/{tpa → app}/session/events.d.ts.map +1 -1
- package/dist/{tpa → app}/session/events.js +1 -1
- package/dist/{tpa → app}/session/index.d.ts +40 -38
- package/dist/app/session/index.d.ts.map +1 -0
- package/dist/{tpa → app}/session/index.js +126 -116
- package/dist/{tpa → app}/session/layouts.d.ts +2 -2
- package/dist/{tpa → app}/session/layouts.d.ts.map +1 -1
- package/dist/{tpa → app}/session/layouts.js +4 -4
- package/dist/{tpa → app}/session/modules/streaming.d.ts +5 -5
- package/dist/{tpa → app}/session/modules/streaming.d.ts.map +1 -1
- package/dist/{tpa → app}/session/modules/streaming.js +7 -7
- package/dist/{tpa → app}/session/settings.d.ts +3 -3
- package/dist/{tpa → app}/session/settings.d.ts.map +1 -1
- package/dist/{tpa → app}/session/settings.js +5 -7
- package/dist/app/token/index.d.ts +7 -0
- package/dist/app/token/index.d.ts.map +1 -0
- package/dist/{tpa → app}/token/index.js +2 -2
- package/dist/{tpa → app}/token/utils.d.ts +6 -6
- package/dist/{tpa → app}/token/utils.d.ts.map +1 -1
- package/dist/{tpa → app}/token/utils.js +6 -6
- package/dist/{tpa → app}/webview/index.d.ts +3 -3
- package/dist/{tpa → app}/webview/index.d.ts.map +1 -1
- package/dist/{tpa → app}/webview/index.js +4 -4
- package/dist/examples/rtmp-streaming-example.js +6 -6
- package/dist/index.d.ts +39 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +76 -16
- package/dist/types/capabilities.d.ts +92 -0
- package/dist/types/capabilities.d.ts.map +1 -0
- package/dist/types/capabilities.js +9 -0
- package/dist/types/dashboard/index.d.ts +9 -9
- package/dist/types/enums.d.ts +2 -2
- package/dist/types/enums.js +8 -8
- package/dist/types/index.d.ts +7 -6
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +26 -24
- package/dist/types/layouts.d.ts +2 -2
- package/dist/types/message-types.d.ts +18 -18
- package/dist/types/message-types.js +47 -47
- package/dist/types/messages/app-to-cloud.d.ts +146 -0
- package/dist/types/messages/{tpa-to-cloud.d.ts.map → app-to-cloud.d.ts.map} +1 -1
- package/dist/types/messages/{tpa-to-cloud.js → app-to-cloud.js} +18 -18
- package/dist/types/messages/{cloud-to-tpa.d.ts → cloud-to-app.d.ts} +54 -52
- package/dist/types/messages/cloud-to-app.d.ts.map +1 -0
- package/dist/types/messages/{cloud-to-tpa.js → cloud-to-app.js} +22 -22
- package/dist/types/models.d.ts +7 -7
- package/dist/types/models.js +3 -3
- package/dist/types/streams.d.ts +2 -2
- package/dist/types/streams.js +2 -2
- package/dist/types/token.d.ts +7 -7
- package/dist/types/token.js +2 -2
- package/dist/types/webhooks.d.ts +8 -8
- package/dist/types/webhooks.js +3 -3
- package/package.json +2 -1
- package/dist/tpa/server/index.d.ts.map +0 -1
- package/dist/tpa/session/index.d.ts.map +0 -1
- package/dist/tpa/token/index.d.ts +0 -7
- package/dist/tpa/token/index.d.ts.map +0 -1
- package/dist/types/messages/cloud-to-tpa.d.ts.map +0 -1
- package/dist/types/messages/tpa-to-cloud.d.ts +0 -146
- /package/dist/{tpa → app}/index.d.ts +0 -0
@@ -2,16 +2,16 @@ import { EventManager, EventData } from './events';
|
|
2
2
|
import { LayoutManager } from './layouts';
|
3
3
|
import { SettingsManager } from './settings';
|
4
4
|
import { StreamingModule } from './modules/streaming';
|
5
|
-
import { ExtendedStreamType, ButtonPress, HeadPosition, PhoneNotification, TranscriptionData, TranslationData, AppSettings, AppSetting,
|
5
|
+
import { ExtendedStreamType, ButtonPress, HeadPosition, PhoneNotification, TranscriptionData, TranslationData, AppSettings, AppSetting, AppConfig, VpsCoordinates, PhotoTaken, Capabilities } from '../../types';
|
6
6
|
import { DashboardAPI } from '../../types/dashboard';
|
7
7
|
import { Logger } from 'pino';
|
8
|
-
import {
|
8
|
+
import { AppServer } from '../server';
|
9
9
|
/**
|
10
|
-
* ⚙️ Configuration options for
|
10
|
+
* ⚙️ Configuration options for App Session
|
11
11
|
*
|
12
12
|
* @example
|
13
13
|
* ```typescript
|
14
|
-
* const config:
|
14
|
+
* const config: AppSessionConfig = {
|
15
15
|
* packageName: 'org.example.myapp',
|
16
16
|
* apiKey: 'your_api_key',
|
17
17
|
* // Auto-reconnection is enabled by default
|
@@ -19,12 +19,12 @@ import { TpaServer } from '../server';
|
|
19
19
|
* };
|
20
20
|
* ```
|
21
21
|
*/
|
22
|
-
export interface
|
23
|
-
/** 📦 Unique identifier for your
|
22
|
+
export interface AppSessionConfig {
|
23
|
+
/** 📦 Unique identifier for your App (e.g., 'org.company.appname') */
|
24
24
|
packageName: string;
|
25
25
|
/** 🔑 API key for authentication with AugmentOS Cloud */
|
26
26
|
apiKey: string;
|
27
|
-
/** 🔌 WebSocket server URL (default: 'ws://localhost:7002/
|
27
|
+
/** 🔌 WebSocket server URL (default: 'ws://localhost:7002/app-ws') */
|
28
28
|
augmentOSWebsocketUrl?: string;
|
29
29
|
/** 🔄 Automatically attempt to reconnect on disconnect (default: true) */
|
30
30
|
autoReconnect?: boolean;
|
@@ -33,12 +33,12 @@ export interface TpaSessionConfig {
|
|
33
33
|
/** ⏱️ Base delay between reconnection attempts in ms (default: 1000) */
|
34
34
|
reconnectDelay?: number;
|
35
35
|
userId: string;
|
36
|
-
|
36
|
+
appServer: AppServer;
|
37
37
|
}
|
38
38
|
/**
|
39
|
-
* 🚀
|
39
|
+
* 🚀 App Session Implementation
|
40
40
|
*
|
41
|
-
* Manages a live connection between your
|
41
|
+
* Manages a live connection between your App and AugmentOS Cloud.
|
42
42
|
* Provides interfaces for:
|
43
43
|
* - 🎮 Event handling (transcription, head position, etc.)
|
44
44
|
* - 📱 Display management in AR view
|
@@ -47,7 +47,7 @@ export interface TpaSessionConfig {
|
|
47
47
|
*
|
48
48
|
* @example
|
49
49
|
* ```typescript
|
50
|
-
* const session = new
|
50
|
+
* const session = new AppSession({
|
51
51
|
* packageName: 'org.example.myapp',
|
52
52
|
* apiKey: 'your_api_key'
|
53
53
|
* });
|
@@ -61,7 +61,7 @@ export interface TpaSessionConfig {
|
|
61
61
|
* await session.connect('session_123');
|
62
62
|
* ```
|
63
63
|
*/
|
64
|
-
export declare class
|
64
|
+
export declare class AppSession {
|
65
65
|
private config;
|
66
66
|
/** WebSocket connection to AugmentOS Cloud */
|
67
67
|
private ws;
|
@@ -75,8 +75,8 @@ export declare class TpaSession {
|
|
75
75
|
private resources;
|
76
76
|
/** Internal settings storage - use public settings API instead */
|
77
77
|
private settingsData;
|
78
|
-
/**
|
79
|
-
private
|
78
|
+
/** App configuration loaded from app_config.json */
|
79
|
+
private appConfig;
|
80
80
|
/** Whether to update subscriptions when settings change */
|
81
81
|
private shouldUpdateSubscriptionsOnSettingsChange;
|
82
82
|
/** Custom subscription handler for settings-based subscriptions */
|
@@ -99,19 +99,21 @@ export declare class TpaSession {
|
|
99
99
|
readonly dashboard: DashboardAPI;
|
100
100
|
/** 📹 RTMP streaming interface */
|
101
101
|
readonly streaming: StreamingModule;
|
102
|
-
readonly
|
102
|
+
readonly appServer: AppServer;
|
103
103
|
readonly logger: Logger;
|
104
104
|
readonly userId: string;
|
105
|
-
/**
|
106
|
-
|
107
|
-
|
105
|
+
/** 🔧 Device capabilities available for this session */
|
106
|
+
capabilities: Capabilities | null;
|
107
|
+
/** Dedicated emitter for App-to-App events */
|
108
|
+
private appEvents;
|
109
|
+
constructor(config: AppSessionConfig);
|
108
110
|
/**
|
109
111
|
* Get the current session ID
|
110
112
|
* @returns The current session ID or 'unknown-session-id' if not connected
|
111
113
|
*/
|
112
114
|
getSessionId(): string;
|
113
115
|
/**
|
114
|
-
* Get the package name for this
|
116
|
+
* Get the package name for this App
|
115
117
|
* @returns The package name
|
116
118
|
*/
|
117
119
|
getPackageName(): string;
|
@@ -217,7 +219,7 @@ export declare class TpaSession {
|
|
217
219
|
getSetting<T>(key: string): T | undefined;
|
218
220
|
/**
|
219
221
|
* ⚙️ Configure settings-based subscription updates
|
220
|
-
* This allows
|
222
|
+
* This allows Apps to automatically update their subscriptions when certain settings change
|
221
223
|
* @param options Configuration options for settings-based subscriptions
|
222
224
|
*/
|
223
225
|
setSubscriptionSettings(options: {
|
@@ -237,16 +239,16 @@ export declare class TpaSession {
|
|
237
239
|
updateSettingsForTesting(newSettings: AppSettings): void;
|
238
240
|
/**
|
239
241
|
* 📝 Load configuration from a JSON file
|
240
|
-
* @param jsonData JSON string containing
|
242
|
+
* @param jsonData JSON string containing App configuration
|
241
243
|
* @returns The loaded configuration
|
242
244
|
* @throws Error if the configuration is invalid
|
243
245
|
*/
|
244
|
-
loadConfigFromJson(jsonData: string):
|
246
|
+
loadConfigFromJson(jsonData: string): AppConfig;
|
245
247
|
/**
|
246
|
-
* 📋 Get the loaded
|
247
|
-
* @returns The current
|
248
|
+
* 📋 Get the loaded App configuration
|
249
|
+
* @returns The current App configuration or null if not loaded
|
248
250
|
*/
|
249
|
-
getConfig():
|
251
|
+
getConfig(): AppConfig | null;
|
250
252
|
/**
|
251
253
|
* 🔌 Get the WebSocket server URL for this session
|
252
254
|
* @returns The WebSocket server URL used by this session
|
@@ -255,7 +257,7 @@ export declare class TpaSession {
|
|
255
257
|
getHttpsServerUrl(): string | undefined;
|
256
258
|
private static convertToHttps;
|
257
259
|
/**
|
258
|
-
* 🔍 Get default settings from the
|
260
|
+
* 🔍 Get default settings from the App configuration
|
259
261
|
* @returns Array of settings with default values
|
260
262
|
* @throws Error if configuration is not loaded
|
261
263
|
*/
|
@@ -311,11 +313,11 @@ export declare class TpaSession {
|
|
311
313
|
*/
|
312
314
|
getInstructions(): Promise<string | null>;
|
313
315
|
/**
|
314
|
-
* 👥 Discover other users currently using the same
|
316
|
+
* 👥 Discover other users currently using the same App
|
315
317
|
* @param includeProfiles - Whether to include user profile information
|
316
318
|
* @returns Promise that resolves with list of active users
|
317
319
|
*/
|
318
|
-
|
320
|
+
discoverAppUsers(domain: string, includeProfiles?: boolean): Promise<any>;
|
319
321
|
/**
|
320
322
|
* 🔍 Check if a specific user is currently active
|
321
323
|
* @param userId - User ID to check for
|
@@ -323,17 +325,17 @@ export declare class TpaSession {
|
|
323
325
|
*/
|
324
326
|
isUserActive(userId: string): Promise<boolean>;
|
325
327
|
/**
|
326
|
-
* 📊 Get user count for this
|
328
|
+
* 📊 Get user count for this App
|
327
329
|
* @returns Promise that resolves with number of active users
|
328
330
|
*/
|
329
331
|
getUserCount(domain: string): Promise<number>;
|
330
332
|
/**
|
331
|
-
* 📢 Send broadcast message to all users with same
|
333
|
+
* 📢 Send broadcast message to all users with same App active
|
332
334
|
* @param payload - Message payload to send
|
333
335
|
* @param roomId - Optional room ID for room-based messaging
|
334
336
|
* @returns Promise that resolves when message is sent
|
335
337
|
*/
|
336
|
-
|
338
|
+
broadcastToAppUsers(payload: any, roomId?: string): Promise<void>;
|
337
339
|
/**
|
338
340
|
* 📤 Send direct message to specific user
|
339
341
|
* @param targetUserId - User ID to send message to
|
@@ -347,7 +349,7 @@ export declare class TpaSession {
|
|
347
349
|
* @param roomConfig - Optional room configuration
|
348
350
|
* @returns Promise that resolves when room is joined
|
349
351
|
*/
|
350
|
-
|
352
|
+
joinAppRoom(roomId: string, roomConfig?: {
|
351
353
|
maxUsers?: number;
|
352
354
|
isPrivate?: boolean;
|
353
355
|
metadata?: any;
|
@@ -357,31 +359,31 @@ export declare class TpaSession {
|
|
357
359
|
* @param roomId - Room ID to leave
|
358
360
|
* @returns Promise that resolves when room is left
|
359
361
|
*/
|
360
|
-
|
362
|
+
leaveAppRoom(roomId: string): Promise<void>;
|
361
363
|
/**
|
362
|
-
* 📨 Listen for messages from other
|
364
|
+
* 📨 Listen for messages from other App users
|
363
365
|
* @param handler - Function to handle incoming messages
|
364
366
|
* @returns Cleanup function to remove the handler
|
365
367
|
*/
|
366
|
-
|
368
|
+
onAppMessage(handler: (message: any) => void): () => void;
|
367
369
|
/**
|
368
370
|
* 👋 Listen for user join events
|
369
371
|
* @param handler - Function to handle user join events
|
370
372
|
* @returns Cleanup function to remove the handler
|
371
373
|
*/
|
372
|
-
|
374
|
+
onAppUserJoined(handler: (data: any) => void): () => void;
|
373
375
|
/**
|
374
376
|
* 🚪 Listen for user leave events
|
375
377
|
* @param handler - Function to handle user leave events
|
376
378
|
* @returns Cleanup function to remove the handler
|
377
379
|
*/
|
378
|
-
|
380
|
+
onAppUserLeft(handler: (data: any) => void): () => void;
|
379
381
|
/**
|
380
382
|
* 🏠 Listen for room update events
|
381
383
|
* @param handler - Function to handle room updates
|
382
384
|
* @returns Cleanup function to remove the handler
|
383
385
|
*/
|
384
|
-
|
386
|
+
onAppRoomUpdated(handler: (data: any) => void): () => void;
|
385
387
|
/**
|
386
388
|
* 🔧 Generate unique message ID
|
387
389
|
* @returns Unique message identifier
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app/session/index.ts"],"names":[],"mappings":"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"}
|