connectbase-client 0.6.17 → 0.6.19

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/index.d.mts CHANGED
@@ -863,6 +863,52 @@ interface ListPageMetasResponse {
863
863
  interface BatchSetPageMetaRequest {
864
864
  pages: SetPageMetaRequest[];
865
865
  }
866
+ /**
867
+ * Presigned URL 생성 요청
868
+ */
869
+ interface GenerateUploadURLRequest {
870
+ file_name: string;
871
+ file_size: number;
872
+ mime_type: string;
873
+ parent_id?: string;
874
+ }
875
+ /**
876
+ * Presigned URL 생성 응답
877
+ */
878
+ interface GenerateUploadURLResponse {
879
+ upload_url: string;
880
+ file_id: string;
881
+ public_url: string;
882
+ }
883
+ /**
884
+ * 경로 기반 Presigned URL 생성 요청
885
+ */
886
+ interface GenerateUploadURLByPathRequest {
887
+ file_name: string;
888
+ file_size: number;
889
+ mime_type: string;
890
+ overwrite?: boolean;
891
+ }
892
+ /**
893
+ * 업로드 완료 요청
894
+ */
895
+ interface CompleteUploadRequest {
896
+ file_id: string;
897
+ }
898
+ /**
899
+ * 업로드 완료 응답
900
+ */
901
+ interface CompleteUploadResponse {
902
+ id: string;
903
+ name: string;
904
+ path: string;
905
+ type: string;
906
+ mime_type: string;
907
+ size: number;
908
+ url: string;
909
+ parent_id?: string;
910
+ created_at: string;
911
+ }
866
912
 
867
913
  declare class StorageAPI {
868
914
  private http;
@@ -876,7 +922,16 @@ declare class StorageAPI {
876
922
  */
877
923
  getFiles(storageId: string): Promise<FileItem[]>;
878
924
  /**
879
- * 파일 업로드
925
+ * 파일 업로드 (Presigned URL 방식)
926
+ *
927
+ * 서버를 거치지 않고 Object Storage에 직접 업로드합니다.
928
+ *
929
+ * @example
930
+ * ```ts
931
+ * const fileInput = document.querySelector('input[type="file"]')
932
+ * const result = await cb.storage.uploadFile('storage-id', fileInput.files[0])
933
+ * console.log(result.url) // 업로드된 파일 URL
934
+ * ```
880
935
  */
881
936
  uploadFile(storageId: string, file: File, parentId?: string): Promise<UploadFileResponse>;
882
937
  /**
@@ -908,7 +963,7 @@ declare class StorageAPI {
908
963
  */
909
964
  isImageFile(file: FileItem): boolean;
910
965
  /**
911
- * 경로 기반 파일 업로드 (Firebase Storage 스타일)
966
+ * 경로 기반 파일 업로드 (Firebase Storage 스타일, Presigned URL)
912
967
  *
913
968
  * 같은 경로에 파일이 이미 존재하면 덮어쓰기합니다.
914
969
  * URL이 변경되지 않아 고정 URL이 필요한 경우에 유용합니다.
@@ -3939,6 +3994,469 @@ declare class AdsAPI {
3939
3994
  getAdMobReportSummary(): Promise<AdMobReportSummary>;
3940
3995
  }
3941
3996
 
3997
+ /**
3998
+ * Native Bridge API
3999
+ *
4000
+ * 웹, 모바일(React Native), 데스크톱(Electron)에서 동일한 API로
4001
+ * 네이티브 기능을 사용할 수 있는 크로스 플랫폼 유틸리티
4002
+ *
4003
+ * @example
4004
+ * ```typescript
4005
+ * import ConnectBase from 'connectbase-client'
4006
+ *
4007
+ * const cb = new ConnectBase({ apiKey: 'your-api-key' })
4008
+ *
4009
+ * // 플랫폼 감지
4010
+ * const platform = cb.native.getPlatform() // 'web' | 'mobile' | 'desktop'
4011
+ *
4012
+ * // 크로스 플랫폼 클립보드
4013
+ * await cb.native.clipboard.writeText('Hello')
4014
+ *
4015
+ * // 크로스 플랫폼 파일 저장
4016
+ * await cb.native.filesystem.saveFile('Hello World', 'hello.txt')
4017
+ * ```
4018
+ */
4019
+ declare global {
4020
+ interface Window {
4021
+ NativeBridge?: NativeBridgeInterface;
4022
+ ReactNativeWebView?: unknown;
4023
+ }
4024
+ }
4025
+ interface NativeBridgeInterface {
4026
+ platform?: 'electron' | 'react-native' | 'ios' | 'android';
4027
+ camera?: {
4028
+ takePicture: (options?: CameraOptions) => Promise<ImageResult>;
4029
+ pickImage: (options?: PickImageOptions) => Promise<ImageResult[]>;
4030
+ };
4031
+ push?: {
4032
+ getToken: () => Promise<{
4033
+ token: string;
4034
+ }>;
4035
+ requestPermission: () => Promise<{
4036
+ granted: boolean;
4037
+ }>;
4038
+ scheduleLocal: (options: LocalNotificationOptions) => Promise<{
4039
+ notificationId: string;
4040
+ }>;
4041
+ };
4042
+ location?: {
4043
+ getCurrentPosition: (options?: LocationOptions) => Promise<Position>;
4044
+ watchPosition: (options?: LocationOptions) => Promise<{
4045
+ watchId: string;
4046
+ }>;
4047
+ stopWatch: (watchId: string) => Promise<{
4048
+ stopped: boolean;
4049
+ }>;
4050
+ };
4051
+ biometric?: {
4052
+ isAvailable: () => Promise<BiometricInfo>;
4053
+ authenticate: (options?: BiometricOptions) => Promise<BiometricResult>;
4054
+ };
4055
+ secureStore?: {
4056
+ setItem: (key: string, value: string) => Promise<{
4057
+ success: boolean;
4058
+ }>;
4059
+ getItem: (key: string) => Promise<{
4060
+ value: string | null;
4061
+ }>;
4062
+ deleteItem: (key: string) => Promise<{
4063
+ success: boolean;
4064
+ }>;
4065
+ };
4066
+ admob?: {
4067
+ showInterstitial: () => Promise<{
4068
+ shown: boolean;
4069
+ }>;
4070
+ showRewarded: () => Promise<{
4071
+ rewarded: boolean;
4072
+ }>;
4073
+ };
4074
+ app?: {
4075
+ getVersion: () => Promise<string>;
4076
+ getName: () => Promise<string>;
4077
+ getPath: (name: string) => Promise<string | null>;
4078
+ quit: () => Promise<void>;
4079
+ };
4080
+ system?: {
4081
+ getInfo: () => Promise<SystemInfo>;
4082
+ getMemory: () => Promise<MemoryInfo>;
4083
+ getCPU: () => Promise<CPUInfo>;
4084
+ };
4085
+ window?: {
4086
+ minimize: () => Promise<void>;
4087
+ maximize: () => Promise<void>;
4088
+ unmaximize: () => Promise<void>;
4089
+ isMaximized: () => Promise<boolean>;
4090
+ close: () => Promise<void>;
4091
+ setTitle: (title: string) => Promise<void>;
4092
+ setSize: (width: number, height: number) => Promise<void>;
4093
+ getSize: () => Promise<[number, number]>;
4094
+ setPosition: (x: number, y: number) => Promise<void>;
4095
+ getPosition: () => Promise<[number, number]>;
4096
+ center: () => Promise<void>;
4097
+ setFullScreen: (flag: boolean) => Promise<void>;
4098
+ isFullScreen: () => Promise<boolean>;
4099
+ setAlwaysOnTop: (flag: boolean) => Promise<void>;
4100
+ };
4101
+ clipboard?: {
4102
+ readText: () => Promise<string>;
4103
+ writeText: (text: string) => Promise<void>;
4104
+ readHTML: () => Promise<string>;
4105
+ writeHTML: (html: string) => Promise<void>;
4106
+ readImage: () => Promise<string | null>;
4107
+ writeImage: (dataURL: string) => Promise<void>;
4108
+ clear: () => Promise<void>;
4109
+ };
4110
+ shell?: {
4111
+ openExternal: (url: string) => Promise<{
4112
+ success: boolean;
4113
+ error?: string;
4114
+ }>;
4115
+ openPath: (path: string) => Promise<{
4116
+ success: boolean;
4117
+ error?: string;
4118
+ }>;
4119
+ showItemInFolder: (path: string) => Promise<{
4120
+ success: boolean;
4121
+ }>;
4122
+ beep: () => Promise<void>;
4123
+ };
4124
+ notification?: {
4125
+ show: (options: NotificationOptions) => Promise<{
4126
+ success: boolean;
4127
+ }>;
4128
+ isSupported: () => Promise<boolean>;
4129
+ };
4130
+ filesystem?: {
4131
+ showOpenDialog?: (options?: OpenDialogOptions) => Promise<OpenDialogResult>;
4132
+ showSaveDialog?: (options?: SaveDialogOptions) => Promise<SaveDialogResult>;
4133
+ readFile: (path: string, encoding?: string) => Promise<{
4134
+ success: boolean;
4135
+ content?: string;
4136
+ error?: string;
4137
+ }>;
4138
+ writeFile: (path: string, content: string, encoding?: string) => Promise<{
4139
+ success: boolean;
4140
+ error?: string;
4141
+ }>;
4142
+ exists: (path: string) => Promise<boolean>;
4143
+ stat: (path: string) => Promise<FileStats>;
4144
+ readDir: (path: string) => Promise<{
4145
+ success: boolean;
4146
+ entries?: DirEntry[];
4147
+ error?: string;
4148
+ }>;
4149
+ mkdir: (path: string) => Promise<{
4150
+ success: boolean;
4151
+ error?: string;
4152
+ }>;
4153
+ remove: (path: string) => Promise<{
4154
+ success: boolean;
4155
+ error?: string;
4156
+ }>;
4157
+ copy: (src: string, dest: string) => Promise<{
4158
+ success: boolean;
4159
+ error?: string;
4160
+ }>;
4161
+ move: (src: string, dest: string) => Promise<{
4162
+ success: boolean;
4163
+ error?: string;
4164
+ }>;
4165
+ pickDocument?: (options?: PickDocumentOptions) => Promise<DocumentResult>;
4166
+ saveToGallery?: (uri: string) => Promise<{
4167
+ uri: string;
4168
+ }>;
4169
+ };
4170
+ onDeepLink?: (callback: (url: string) => void) => () => void;
4171
+ }
4172
+ type Platform = 'web' | 'mobile' | 'desktop';
4173
+ interface CameraOptions {
4174
+ quality?: number;
4175
+ base64?: boolean;
4176
+ }
4177
+ interface PickImageOptions extends CameraOptions {
4178
+ multiple?: boolean;
4179
+ }
4180
+ interface ImageResult {
4181
+ uri: string;
4182
+ base64?: string;
4183
+ width: number;
4184
+ height: number;
4185
+ }
4186
+ interface LocalNotificationOptions {
4187
+ title: string;
4188
+ body: string;
4189
+ data?: Record<string, unknown>;
4190
+ trigger?: {
4191
+ seconds: number;
4192
+ } | null;
4193
+ }
4194
+ interface LocationOptions {
4195
+ accuracy?: 'low' | 'medium' | 'high';
4196
+ distanceInterval?: number;
4197
+ }
4198
+ interface Position {
4199
+ latitude: number;
4200
+ longitude: number;
4201
+ altitude: number | null;
4202
+ accuracy: number;
4203
+ timestamp: number;
4204
+ }
4205
+ interface BiometricInfo {
4206
+ available: boolean;
4207
+ hasHardware: boolean;
4208
+ isEnrolled: boolean;
4209
+ supportedTypes: number[];
4210
+ }
4211
+ interface BiometricOptions {
4212
+ promptMessage?: string;
4213
+ cancelLabel?: string;
4214
+ disableDeviceFallback?: boolean;
4215
+ }
4216
+ interface BiometricResult {
4217
+ success: boolean;
4218
+ error?: string;
4219
+ }
4220
+ interface SystemInfo {
4221
+ platform: string;
4222
+ arch: string;
4223
+ version: string;
4224
+ hostname: string;
4225
+ homeDir: string;
4226
+ tmpDir: string;
4227
+ cpuCount: number;
4228
+ totalMemory: number;
4229
+ freeMemory: number;
4230
+ }
4231
+ interface MemoryInfo {
4232
+ total: number;
4233
+ free: number;
4234
+ used: number;
4235
+ usagePercent: string;
4236
+ }
4237
+ interface CPUInfo {
4238
+ model: string;
4239
+ count: number;
4240
+ speed: number;
4241
+ }
4242
+ interface NotificationOptions {
4243
+ title: string;
4244
+ body: string;
4245
+ icon?: string;
4246
+ silent?: boolean;
4247
+ }
4248
+ interface OpenDialogOptions {
4249
+ title?: string;
4250
+ defaultPath?: string;
4251
+ filters?: Array<{
4252
+ name: string;
4253
+ extensions: string[];
4254
+ }>;
4255
+ properties?: Array<'openFile' | 'openDirectory' | 'multiSelections'>;
4256
+ message?: string;
4257
+ }
4258
+ interface OpenDialogResult {
4259
+ canceled: boolean;
4260
+ filePaths: string[];
4261
+ }
4262
+ interface SaveDialogOptions {
4263
+ title?: string;
4264
+ defaultPath?: string;
4265
+ filters?: Array<{
4266
+ name: string;
4267
+ extensions: string[];
4268
+ }>;
4269
+ message?: string;
4270
+ }
4271
+ interface SaveDialogResult {
4272
+ canceled: boolean;
4273
+ filePath?: string;
4274
+ }
4275
+ interface FileStats {
4276
+ success: boolean;
4277
+ isFile?: boolean;
4278
+ isDirectory?: boolean;
4279
+ size?: number;
4280
+ created?: Date;
4281
+ modified?: Date;
4282
+ accessed?: Date;
4283
+ error?: string;
4284
+ }
4285
+ interface DirEntry {
4286
+ name: string;
4287
+ isFile: boolean;
4288
+ isDirectory: boolean;
4289
+ }
4290
+ interface PickDocumentOptions {
4291
+ type?: string;
4292
+ }
4293
+ interface DocumentResult {
4294
+ uri: string;
4295
+ name: string;
4296
+ size: number;
4297
+ mimeType: string;
4298
+ }
4299
+ /**
4300
+ * Native API - 크로스 플랫폼 네이티브 기능
4301
+ */
4302
+ declare class NativeAPI {
4303
+ /**
4304
+ * 현재 플랫폼 감지
4305
+ */
4306
+ getPlatform(): Platform;
4307
+ /**
4308
+ * 특정 네이티브 기능 지원 여부 확인
4309
+ */
4310
+ hasFeature(feature: keyof NativeBridgeInterface): boolean;
4311
+ /**
4312
+ * NativeBridge 직접 접근 (고급 사용자용)
4313
+ */
4314
+ get bridge(): NativeBridgeInterface | undefined;
4315
+ /**
4316
+ * 크로스 플랫폼 클립보드 API
4317
+ */
4318
+ clipboard: {
4319
+ /**
4320
+ * 텍스트 복사
4321
+ */
4322
+ writeText: (text: string) => Promise<void>;
4323
+ /**
4324
+ * 텍스트 읽기
4325
+ */
4326
+ readText: () => Promise<string>;
4327
+ /**
4328
+ * HTML 복사 (데스크톱 전용)
4329
+ */
4330
+ writeHTML: (html: string) => Promise<void>;
4331
+ /**
4332
+ * 이미지 복사 (데스크톱 전용, Data URL)
4333
+ */
4334
+ writeImage: (dataURL: string) => Promise<void>;
4335
+ /**
4336
+ * 이미지 읽기 (데스크톱 전용, Data URL 반환)
4337
+ */
4338
+ readImage: () => Promise<string | null>;
4339
+ };
4340
+ /**
4341
+ * 크로스 플랫폼 파일 시스템 API
4342
+ */
4343
+ filesystem: {
4344
+ /**
4345
+ * 파일 선택 다이얼로그 (데스크톱) 또는 파일 input (웹)
4346
+ */
4347
+ pickFile: (options?: {
4348
+ accept?: string;
4349
+ multiple?: boolean;
4350
+ filters?: Array<{
4351
+ name: string;
4352
+ extensions: string[];
4353
+ }>;
4354
+ }) => Promise<File[] | null>;
4355
+ /**
4356
+ * 파일 저장
4357
+ */
4358
+ saveFile: (content: string | Blob, filename: string, options?: {
4359
+ filters?: Array<{
4360
+ name: string;
4361
+ extensions: string[];
4362
+ }>;
4363
+ }) => Promise<boolean>;
4364
+ /**
4365
+ * 파일 읽기 (데스크톱/모바일)
4366
+ */
4367
+ readFile: (path: string) => Promise<string | null>;
4368
+ /**
4369
+ * 파일 존재 확인 (데스크톱/모바일)
4370
+ */
4371
+ exists: (path: string) => Promise<boolean>;
4372
+ };
4373
+ /**
4374
+ * 크로스 플랫폼 카메라/이미지 API
4375
+ */
4376
+ camera: {
4377
+ /**
4378
+ * 카메라로 사진 촬영 (모바일) 또는 파일 선택 (웹/데스크톱)
4379
+ */
4380
+ takePicture: (options?: CameraOptions) => Promise<ImageResult | null>;
4381
+ /**
4382
+ * 갤러리에서 이미지 선택
4383
+ */
4384
+ pickImage: (options?: PickImageOptions) => Promise<ImageResult[] | null>;
4385
+ };
4386
+ /**
4387
+ * 크로스 플랫폼 위치 API
4388
+ */
4389
+ location: {
4390
+ /**
4391
+ * 현재 위치 가져오기
4392
+ */
4393
+ getCurrentPosition: (options?: LocationOptions) => Promise<Position>;
4394
+ };
4395
+ /**
4396
+ * 크로스 플랫폼 알림 API
4397
+ */
4398
+ notification: {
4399
+ /**
4400
+ * 알림 표시
4401
+ */
4402
+ show: (options: NotificationOptions) => Promise<boolean>;
4403
+ /**
4404
+ * 알림 권한 요청
4405
+ */
4406
+ requestPermission: () => Promise<boolean>;
4407
+ };
4408
+ /**
4409
+ * 크로스 플랫폼 셸 API
4410
+ */
4411
+ shell: {
4412
+ /**
4413
+ * 외부 URL 열기
4414
+ */
4415
+ openExternal: (url: string) => Promise<boolean>;
4416
+ };
4417
+ /**
4418
+ * 데스크톱 전용 창 제어 API
4419
+ */
4420
+ window: {
4421
+ minimize: () => Promise<void>;
4422
+ maximize: () => Promise<void>;
4423
+ unmaximize: () => Promise<void>;
4424
+ close: () => Promise<void>;
4425
+ isMaximized: () => Promise<boolean>;
4426
+ setTitle: (title: string) => Promise<void>;
4427
+ setFullScreen: (flag: boolean) => Promise<void>;
4428
+ };
4429
+ /**
4430
+ * 데스크톱 전용 시스템 정보 API
4431
+ */
4432
+ system: {
4433
+ getInfo: () => Promise<SystemInfo | null>;
4434
+ getMemory: () => Promise<MemoryInfo | null>;
4435
+ };
4436
+ /**
4437
+ * 모바일 전용 생체인증 API
4438
+ */
4439
+ biometric: {
4440
+ isAvailable: () => Promise<BiometricInfo | null>;
4441
+ authenticate: (options?: BiometricOptions) => Promise<BiometricResult | null>;
4442
+ };
4443
+ /**
4444
+ * 모바일 전용 보안 저장소 API
4445
+ */
4446
+ secureStore: {
4447
+ setItem: (key: string, value: string) => Promise<boolean>;
4448
+ getItem: (key: string) => Promise<string | null>;
4449
+ deleteItem: (key: string) => Promise<boolean>;
4450
+ };
4451
+ /**
4452
+ * 모바일 전용 AdMob API
4453
+ */
4454
+ admob: {
4455
+ showInterstitial: () => Promise<boolean>;
4456
+ showRewarded: () => Promise<boolean>;
4457
+ };
4458
+ }
4459
+
3942
4460
  /**
3943
4461
  * WebTransport-based Game Client
3944
4462
  *
@@ -4222,6 +4740,11 @@ declare class ConnectBase {
4222
4740
  * 광고 API (Google AdSense)
4223
4741
  */
4224
4742
  readonly ads: AdsAPI;
4743
+ /**
4744
+ * 네이티브 브릿지 API (크로스 플랫폼)
4745
+ * 웹, 모바일(React Native), 데스크톱(Electron)에서 동일한 API로 네이티브 기능 사용
4746
+ */
4747
+ readonly native: NativeAPI;
4225
4748
  constructor(config?: ConnectBaseConfig);
4226
4749
  /**
4227
4750
  * 수동으로 토큰 설정 (기존 토큰으로 세션 복원 시)
@@ -4237,4 +4760,4 @@ declare class ConnectBase {
4237
4760
  updateConfig(config: Partial<ConnectBaseConfig>): void;
4238
4761
  }
4239
4762
 
4240
- export { type AdReportResponse, type AdReportSummary, AdsAPI, type AggregateResult, type AggregateStage, ApiError, type ApiKeyItem, type AppStatsResponse, type AtomicOperator, type AtomicOperatorType, AuthError, type AuthSettingsResponse, type BackupInfo, type BatchOperation, type BatchSetPageMetaRequest, type BillingCycle, type BillingKeyResponse, type BulkCreateResponse, type BulkError, type CancelPaymentRequest, type CancelPaymentResponse, type CancelSubscriptionRequest, type CategoryInfo, type Channel, type ChannelMembership, type ChargeWithBillingKeyRequest, type ChargeWithBillingKeyResponse, type ChatMessage, type ClientMessage, type ColumnSchema, type CommentListResponse, type ConfirmBillingKeyRequest, type ConfirmPaymentRequest, type ConfirmPaymentResponse, ConnectBase, type ConnectBaseConfig, type ConnectedData, type ConnectionState, type CreateApiKeyRequest, type CreateApiKeyResponse, type CreateBackupRequest, type CreateChannelRequest, type CreateColumnRequest, type CreateDataRequest, type CreateFolderRequest, type CreateFolderResponse, type CreateIndexRequest, type CreateLobbyRequest, type CreatePlaylistRequest, type CreateRelationRequest, type CreateSecurityRuleRequest, type CreateSubscriptionRequest, type CreateTableRequest, type CreateTriggerRequest, type DailyReport, type DataItem, type DataType, type DeleteWhereResponse, type DeviceInfo, type EnabledProviderInfo, type EnabledProvidersResponse, type ErrorHandler, type ErrorMessage, type ErrorReport, type ErrorTrackerConfig, type ErrorType, type FetchApiKeysResponse, type FetchDataResponse, type FetchFilesResponse, type FileItem, GameAPI, type GameAction, type GameClientConfig, type GameConnectionState, type GameConnectionStatus, type GameDelta, type GameEventHandlers, type GamePlayer, GameRoom, type GameRoomConfig, type GameRoomInfo, GameRoomTransport, type GameServerMessage, type GameServerMessageType, type GameState, type GameTransportConfig, type GeoNear, type GeoPoint, type GeoPolygon, type GeoQuery, type GeoResponse, type GeoResult, type GeoWithin, type GetAuthorizationURLResponse, type GetFileByPathResponse, type GoogleConnectionStatus, type GuestMemberSignInResponse, type HistoryResponse, type ICEServer, type ICEServersResponse, type IndexAnalysis, type IndexRecommendation, type InitUploadResponse, type InvokeFunctionRequest, type InvokeFunctionResponse, type IssueBillingKeyRequest, type IssueBillingKeyResponse, type JoinQueueRequest, type JoinRoomRequest, type JoinRoomResponse, type ListBillingKeysResponse, type ListPageMetasResponse, type ListSubscriptionPaymentsRequest, type ListSubscriptionPaymentsResponse, type ListSubscriptionsRequest, type ListSubscriptionsResponse, type LobbyInfo, type LobbyInvite, type LobbyMember, type LobbyVisibility, type MatchmakingTicket, type MemberSignInRequest, type MemberSignInResponse, type MemberSignUpRequest, type MemberSignUpResponse, type MembershipTier, type MessageHandler, type MoveFileRequest, type OAuthCallbackResponse, type OAuthProvider, type PageMetaResponse, type PauseSubscriptionRequest, type PaymentDetail, type PaymentStatus, type PeerInfo, type PlayerEvent, type Playlist, type PlaylistItem, type PongMessage, type PopulateOption, type PreparePaymentRequest, type PreparePaymentResponse, type PushPlatform, type QualityProgress, type QueryOptions, type RealtimeConnectOptions, type RealtimeMessage, type RegisterDeviceRequest, type RelationType, type RenameFileRequest, type RenameFileResponse, type RetentionPolicy, type RoomInfo, type RoomStats, type RoomsResponse, type SearchOptions, type SearchResponse, type SearchResult, type SecurityRule, type SendOptions, type ServerMessage, type SetPageMetaRequest, type Shorts, type ShortsListResponse, type SignalingMessage, type SignalingMessageType, type SlowQueryInfo, type StateChange, type StateChangeHandler, type StreamDoneCallback, type StreamDoneData, type StreamErrorCallback, type StreamHandlers, type StreamMessage, type StreamOptions, type StreamSession, type StreamTokenCallback, type StreamURLResponse, type SubscribeOptions, type SubscribeTopicRequest, type SubscribedData, type Subscription, type SubscriptionPaymentResponse, type SubscriptionPaymentStatus, type SubscriptionResponse, type SubscriptionStatus, type SuperChat, type TTLConfig, type TableIndex, type TableRelation, type TableSchema, type TransactionRead, type TransactionWrite, type TranscodeStatus, type TransportType, type Trigger, type TriggerEvent, type TriggerHandlerType, type UpdateApiKeyRequest, type UpdateApiKeyResponse, type UpdateBillingKeyRequest, type UpdateChannelRequest, type UpdateColumnRequest, type UpdateDataRequest, type UpdateLobbyRequest, type UpdateSecurityRuleRequest, type UpdateSubscriptionRequest, type UpdateTriggerRequest, type UpdateVideoRequest, type UploadByPathOptions, type UploadFileResponse, type UploadOptions, type UploadProgress, type VAPIDPublicKeyResponse, type ValidateResponse, type Video, type VideoComment, type VideoListOptions, type VideoListResponse, VideoProcessingError, type VideoQuality, type VideoStatus, type VideoVisibility, type WaitOptions, type WatchHistoryItem, type WebPushSubscription, type WebRTCConnectOptions, type WebRTCConnectionState, type WebRTCMode, type WhereCondition, type WhereOperator, ConnectBase as default, isWebTransportSupported };
4763
+ export { type AdReportResponse, type AdReportSummary, AdsAPI, type AggregateResult, type AggregateStage, ApiError, type ApiKeyItem, type AppStatsResponse, type AtomicOperator, type AtomicOperatorType, AuthError, type AuthSettingsResponse, type BackupInfo, type BatchOperation, type BatchSetPageMetaRequest, type BillingCycle, type BillingKeyResponse, type BiometricInfo, type BiometricResult, type BulkCreateResponse, type BulkError, type CPUInfo, type CancelPaymentRequest, type CancelPaymentResponse, type CancelSubscriptionRequest, type CategoryInfo, type Channel, type ChannelMembership, type ChargeWithBillingKeyRequest, type ChargeWithBillingKeyResponse, type ChatMessage, type ClientMessage, type ColumnSchema, type CommentListResponse, type CompleteUploadRequest, type CompleteUploadResponse, type ConfirmBillingKeyRequest, type ConfirmPaymentRequest, type ConfirmPaymentResponse, ConnectBase, type ConnectBaseConfig, type ConnectedData, type ConnectionState, type CreateApiKeyRequest, type CreateApiKeyResponse, type CreateBackupRequest, type CreateChannelRequest, type CreateColumnRequest, type CreateDataRequest, type CreateFolderRequest, type CreateFolderResponse, type CreateIndexRequest, type CreateLobbyRequest, type CreatePlaylistRequest, type CreateRelationRequest, type CreateSecurityRuleRequest, type CreateSubscriptionRequest, type CreateTableRequest, type CreateTriggerRequest, type DailyReport, type DataItem, type DataType, type DeleteWhereResponse, type DeviceInfo, type EnabledProviderInfo, type EnabledProvidersResponse, type ErrorHandler, type ErrorMessage, type ErrorReport, type ErrorTrackerConfig, type ErrorType, type FetchApiKeysResponse, type FetchDataResponse, type FetchFilesResponse, type FileItem, type FileStats, GameAPI, type GameAction, type GameClientConfig, type GameConnectionState, type GameConnectionStatus, type GameDelta, type GameEventHandlers, type GamePlayer, GameRoom, type GameRoomConfig, type GameRoomInfo, GameRoomTransport, type GameServerMessage, type GameServerMessageType, type GameState, type GameTransportConfig, type GenerateUploadURLByPathRequest, type GenerateUploadURLRequest, type GenerateUploadURLResponse, type GeoNear, type GeoPoint, type GeoPolygon, type GeoQuery, type GeoResponse, type GeoResult, type GeoWithin, type GetAuthorizationURLResponse, type GetFileByPathResponse, type GoogleConnectionStatus, type GuestMemberSignInResponse, type HistoryResponse, type ICEServer, type ICEServersResponse, type ImageResult, type IndexAnalysis, type IndexRecommendation, type InitUploadResponse, type InvokeFunctionRequest, type InvokeFunctionResponse, type IssueBillingKeyRequest, type IssueBillingKeyResponse, type JoinQueueRequest, type JoinRoomRequest, type JoinRoomResponse, type ListBillingKeysResponse, type ListPageMetasResponse, type ListSubscriptionPaymentsRequest, type ListSubscriptionPaymentsResponse, type ListSubscriptionsRequest, type ListSubscriptionsResponse, type LobbyInfo, type LobbyInvite, type LobbyMember, type LobbyVisibility, type MatchmakingTicket, type MemberSignInRequest, type MemberSignInResponse, type MemberSignUpRequest, type MemberSignUpResponse, type MembershipTier, type MemoryInfo, type MessageHandler, type MoveFileRequest, NativeAPI, type OAuthCallbackResponse, type OAuthProvider, type OpenDialogOptions, type OpenDialogResult, type PageMetaResponse, type PauseSubscriptionRequest, type PaymentDetail, type PaymentStatus, type PeerInfo, type Platform, type PlayerEvent, type Playlist, type PlaylistItem, type PongMessage, type PopulateOption, type Position, type PreparePaymentRequest, type PreparePaymentResponse, type PushPlatform, type QualityProgress, type QueryOptions, type RealtimeConnectOptions, type RealtimeMessage, type RegisterDeviceRequest, type RelationType, type RenameFileRequest, type RenameFileResponse, type RetentionPolicy, type RoomInfo, type RoomStats, type RoomsResponse, type SaveDialogOptions, type SaveDialogResult, type SearchOptions, type SearchResponse, type SearchResult, type SecurityRule, type SendOptions, type ServerMessage, type SetPageMetaRequest, type Shorts, type ShortsListResponse, type SignalingMessage, type SignalingMessageType, type SlowQueryInfo, type StateChange, type StateChangeHandler, type StreamDoneCallback, type StreamDoneData, type StreamErrorCallback, type StreamHandlers, type StreamMessage, type StreamOptions, type StreamSession, type StreamTokenCallback, type StreamURLResponse, type SubscribeOptions, type SubscribeTopicRequest, type SubscribedData, type Subscription, type SubscriptionPaymentResponse, type SubscriptionPaymentStatus, type SubscriptionResponse, type SubscriptionStatus, type SuperChat, type SystemInfo, type TTLConfig, type TableIndex, type TableRelation, type TableSchema, type TransactionRead, type TransactionWrite, type TranscodeStatus, type TransportType, type Trigger, type TriggerEvent, type TriggerHandlerType, type UpdateApiKeyRequest, type UpdateApiKeyResponse, type UpdateBillingKeyRequest, type UpdateChannelRequest, type UpdateColumnRequest, type UpdateDataRequest, type UpdateLobbyRequest, type UpdateSecurityRuleRequest, type UpdateSubscriptionRequest, type UpdateTriggerRequest, type UpdateVideoRequest, type UploadByPathOptions, type UploadFileResponse, type UploadOptions, type UploadProgress, type VAPIDPublicKeyResponse, type ValidateResponse, type Video, type VideoComment, type VideoListOptions, type VideoListResponse, VideoProcessingError, type VideoQuality, type VideoStatus, type VideoVisibility, type WaitOptions, type WatchHistoryItem, type WebPushSubscription, type WebRTCConnectOptions, type WebRTCConnectionState, type WebRTCMode, type WhereCondition, type WhereOperator, ConnectBase as default, isWebTransportSupported };