@cloudflare/realtimekit 1.3.0-staging.2 → 1.4.0-staging.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.
@@ -2788,6 +2788,12 @@ declare class PermissionPreset extends TypedEventEmitter<PermissionEvents> {
2788
2788
  interface UserDetailsResponseV2 {
2789
2789
  participant: UserDetailsResponse;
2790
2790
  preset: PresetV2CamelCased;
2791
+ meeting: {
2792
+ title: string;
2793
+ };
2794
+ socket: {
2795
+ baseUri: string;
2796
+ };
2791
2797
  }
2792
2798
  type LeaveRoomState = 'kicked' | 'ended' | 'left' | 'rejected' | 'connected-meeting' | 'disconnected' | 'failed' | 'stageLeft';
2793
2799
  declare class SelfController {
@@ -2879,7 +2885,6 @@ interface APIOptions {
2879
2885
  cachedUserDetails?: CachedUserDetails;
2880
2886
  }
2881
2887
  declare class API {
2882
- ipInfo: any;
2883
2888
  protected fetchClient: FetchClient;
2884
2889
  protected requests: FetchClient;
2885
2890
  protected roomName: string;
@@ -3951,7 +3956,6 @@ interface ReactNativeFile {
3951
3956
  declare class APIClient extends API {
3952
3957
  telemetry: Telemetry;
3953
3958
  constructor(context: Context<ContextState>, options?: APIOptions);
3954
- getIPDetails(): Promise<any>;
3955
3959
  getICEServers(): Promise<any>;
3956
3960
  getPlugins(): Promise<any[]>;
3957
3961
  getPluginDetails(pluginId: string): Promise<PluginResponse>;
@@ -3975,7 +3979,6 @@ declare class APIClient extends API {
3975
3979
  getActiveTranscript(): Promise<{
3976
3980
  transcript: string;
3977
3981
  }>;
3978
- getRoomNodeData(): Promise<RoomDetails>;
3979
3982
  }
3980
3983
 
3981
3984
  declare enum MessageType {
@@ -4370,6 +4373,7 @@ type ContextState = {
4370
4373
  peerId?: string;
4371
4374
  apiBase?: string;
4372
4375
  baseURI?: string;
4376
+ socketBaseURI?: string;
4373
4377
  onError?: (error: ClientError) => void;
4374
4378
  stageStatus?: StageStatus;
4375
4379
  organizationId?: string;
@@ -4785,15 +4789,6 @@ type LogData$2 = {
4785
4789
  ip?: any;
4786
4790
  timezone?: string;
4787
4791
  };
4788
- ipInfo?: {
4789
- city: string;
4790
- country: string;
4791
- region: string;
4792
- loc: string;
4793
- timezone: string;
4794
- ip: string;
4795
- postal: string;
4796
- };
4797
4792
  polls?: {
4798
4793
  hasQuestion?: boolean;
4799
4794
  optionsLength?: number;
@@ -4901,9 +4896,6 @@ declare class Telemetry {
4901
4896
  [key: string]: any;
4902
4897
  }[];
4903
4898
  logsProcessorTimer: NodeJS.Timer;
4904
- static location: {
4905
- country: string;
4906
- };
4907
4899
  get logsEndpoint(): string;
4908
4900
  tracingEnabled: boolean;
4909
4901
  initialized: boolean;