@mentra/sdk 1.1.20 → 2.0.1
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/{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 +38 -38
- package/dist/{tpa → app}/session/index.d.ts.map +1 -1
- package/dist/{tpa → app}/session/index.js +116 -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 +1 -1
- package/dist/types/capabilities.js +1 -1
- 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 +6 -6
- package/dist/types/index.js +24 -24
- package/dist/types/layouts.d.ts +2 -2
- package/dist/types/message-types.d.ts +15 -15
- 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} +52 -52
- package/dist/types/messages/{cloud-to-tpa.d.ts.map → cloud-to-app.d.ts.map} +1 -1
- 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 +1 -1
- package/dist/tpa/server/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/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,21 +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
105
|
/** 🔧 Device capabilities available for this session */
|
106
106
|
capabilities: Capabilities | null;
|
107
|
-
/** Dedicated emitter for
|
108
|
-
private
|
109
|
-
constructor(config:
|
107
|
+
/** Dedicated emitter for App-to-App events */
|
108
|
+
private appEvents;
|
109
|
+
constructor(config: AppSessionConfig);
|
110
110
|
/**
|
111
111
|
* Get the current session ID
|
112
112
|
* @returns The current session ID or 'unknown-session-id' if not connected
|
113
113
|
*/
|
114
114
|
getSessionId(): string;
|
115
115
|
/**
|
116
|
-
* Get the package name for this
|
116
|
+
* Get the package name for this App
|
117
117
|
* @returns The package name
|
118
118
|
*/
|
119
119
|
getPackageName(): string;
|
@@ -219,7 +219,7 @@ export declare class TpaSession {
|
|
219
219
|
getSetting<T>(key: string): T | undefined;
|
220
220
|
/**
|
221
221
|
* ⚙️ Configure settings-based subscription updates
|
222
|
-
* This allows
|
222
|
+
* This allows Apps to automatically update their subscriptions when certain settings change
|
223
223
|
* @param options Configuration options for settings-based subscriptions
|
224
224
|
*/
|
225
225
|
setSubscriptionSettings(options: {
|
@@ -239,16 +239,16 @@ export declare class TpaSession {
|
|
239
239
|
updateSettingsForTesting(newSettings: AppSettings): void;
|
240
240
|
/**
|
241
241
|
* 📝 Load configuration from a JSON file
|
242
|
-
* @param jsonData JSON string containing
|
242
|
+
* @param jsonData JSON string containing App configuration
|
243
243
|
* @returns The loaded configuration
|
244
244
|
* @throws Error if the configuration is invalid
|
245
245
|
*/
|
246
|
-
loadConfigFromJson(jsonData: string):
|
246
|
+
loadConfigFromJson(jsonData: string): AppConfig;
|
247
247
|
/**
|
248
|
-
* 📋 Get the loaded
|
249
|
-
* @returns The current
|
248
|
+
* 📋 Get the loaded App configuration
|
249
|
+
* @returns The current App configuration or null if not loaded
|
250
250
|
*/
|
251
|
-
getConfig():
|
251
|
+
getConfig(): AppConfig | null;
|
252
252
|
/**
|
253
253
|
* 🔌 Get the WebSocket server URL for this session
|
254
254
|
* @returns The WebSocket server URL used by this session
|
@@ -257,7 +257,7 @@ export declare class TpaSession {
|
|
257
257
|
getHttpsServerUrl(): string | undefined;
|
258
258
|
private static convertToHttps;
|
259
259
|
/**
|
260
|
-
* 🔍 Get default settings from the
|
260
|
+
* 🔍 Get default settings from the App configuration
|
261
261
|
* @returns Array of settings with default values
|
262
262
|
* @throws Error if configuration is not loaded
|
263
263
|
*/
|
@@ -313,11 +313,11 @@ export declare class TpaSession {
|
|
313
313
|
*/
|
314
314
|
getInstructions(): Promise<string | null>;
|
315
315
|
/**
|
316
|
-
* 👥 Discover other users currently using the same
|
316
|
+
* 👥 Discover other users currently using the same App
|
317
317
|
* @param includeProfiles - Whether to include user profile information
|
318
318
|
* @returns Promise that resolves with list of active users
|
319
319
|
*/
|
320
|
-
|
320
|
+
discoverAppUsers(domain: string, includeProfiles?: boolean): Promise<any>;
|
321
321
|
/**
|
322
322
|
* 🔍 Check if a specific user is currently active
|
323
323
|
* @param userId - User ID to check for
|
@@ -325,17 +325,17 @@ export declare class TpaSession {
|
|
325
325
|
*/
|
326
326
|
isUserActive(userId: string): Promise<boolean>;
|
327
327
|
/**
|
328
|
-
* 📊 Get user count for this
|
328
|
+
* 📊 Get user count for this App
|
329
329
|
* @returns Promise that resolves with number of active users
|
330
330
|
*/
|
331
331
|
getUserCount(domain: string): Promise<number>;
|
332
332
|
/**
|
333
|
-
* 📢 Send broadcast message to all users with same
|
333
|
+
* 📢 Send broadcast message to all users with same App active
|
334
334
|
* @param payload - Message payload to send
|
335
335
|
* @param roomId - Optional room ID for room-based messaging
|
336
336
|
* @returns Promise that resolves when message is sent
|
337
337
|
*/
|
338
|
-
|
338
|
+
broadcastToAppUsers(payload: any, roomId?: string): Promise<void>;
|
339
339
|
/**
|
340
340
|
* 📤 Send direct message to specific user
|
341
341
|
* @param targetUserId - User ID to send message to
|
@@ -349,7 +349,7 @@ export declare class TpaSession {
|
|
349
349
|
* @param roomConfig - Optional room configuration
|
350
350
|
* @returns Promise that resolves when room is joined
|
351
351
|
*/
|
352
|
-
|
352
|
+
joinAppRoom(roomId: string, roomConfig?: {
|
353
353
|
maxUsers?: number;
|
354
354
|
isPrivate?: boolean;
|
355
355
|
metadata?: any;
|
@@ -359,31 +359,31 @@ export declare class TpaSession {
|
|
359
359
|
* @param roomId - Room ID to leave
|
360
360
|
* @returns Promise that resolves when room is left
|
361
361
|
*/
|
362
|
-
|
362
|
+
leaveAppRoom(roomId: string): Promise<void>;
|
363
363
|
/**
|
364
|
-
* 📨 Listen for messages from other
|
364
|
+
* 📨 Listen for messages from other App users
|
365
365
|
* @param handler - Function to handle incoming messages
|
366
366
|
* @returns Cleanup function to remove the handler
|
367
367
|
*/
|
368
|
-
|
368
|
+
onAppMessage(handler: (message: any) => void): () => void;
|
369
369
|
/**
|
370
370
|
* 👋 Listen for user join events
|
371
371
|
* @param handler - Function to handle user join events
|
372
372
|
* @returns Cleanup function to remove the handler
|
373
373
|
*/
|
374
|
-
|
374
|
+
onAppUserJoined(handler: (data: any) => void): () => void;
|
375
375
|
/**
|
376
376
|
* 🚪 Listen for user leave events
|
377
377
|
* @param handler - Function to handle user leave events
|
378
378
|
* @returns Cleanup function to remove the handler
|
379
379
|
*/
|
380
|
-
|
380
|
+
onAppUserLeft(handler: (data: any) => void): () => void;
|
381
381
|
/**
|
382
382
|
* 🏠 Listen for room update events
|
383
383
|
* @param handler - Function to handle room updates
|
384
384
|
* @returns Cleanup function to remove the handler
|
385
385
|
*/
|
386
|
-
|
386
|
+
onAppRoomUpdated(handler: (data: any) => void): () => void;
|
387
387
|
/**
|
388
388
|
* 🔧 Generate unique message ID
|
389
389
|
* @returns Unique message identifier
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app/session/index.ts"],"names":[],"mappings":"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"}
|